grmvoid/bun
Bun is a fast all-in-one JavaScript runtime.
18
Image based on:
alpine
Supported architectures:linux/amd64
, linux/arm64
Maintained by:
grmvoid
Where to file issues:
https://github.com/grmvoid/docker-bun/issues
Dockerfile
linksCreate a Dockerfile
FROM grmvoid/bun:1.1.38
COPY . /app
WORKDIR /app
CMD [ "bun", "./script.js" ]
Then, build and run the Docker image
docker build -t bun-app
docker run -it --rm --name custom-bun bun-app
View license information for the software contained in this image.
docker pull grmvoid/bun