grmvoid/bun

By grmvoid

Updated about 1 month ago

Bun is a fast all-in-one JavaScript runtime.

Image
Languages & Frameworks
0

18

Quick reference

Supported tags and respective Dockerfile links

How to use this image

Create 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

License

View license information for the software contained in this image.

Docker Pull Command

docker pull grmvoid/bun