https://github.com/grmvoid/docker-bun
🐳 Docker image for Bun
https://github.com/grmvoid/docker-bun
bun docker docker-bun docker-image dockerfile
Last synced: 2 months ago
JSON representation
🐳 Docker image for Bun
- Host: GitHub
- URL: https://github.com/grmvoid/docker-bun
- Owner: grmvoid
- License: mit
- Created: 2023-09-28T03:01:37.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2025-01-30T19:32:58.000Z (4 months ago)
- Last Synced: 2025-02-01T14:35:21.111Z (4 months ago)
- Topics: bun, docker, docker-bun, docker-image, dockerfile
- Language: Dockerfile
- Homepage: https://hub.docker.com/r/grmvoid/bun
- Size: 29.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
## Quick reference
- **Image based on**:
[alpine](https://hub.docker.com/_/alpine)- **Supported architectures**:
`linux/amd64`, `linux/arm64`- **Maintained by**:
[grmvoid](https://github.com/grmvoid)- **Where to file issues**:
[https://github.com/grmvoid/docker-bun/issues](https://github.com/grmvoid/docker-bun/issues?q=)## Supported tags and respective `Dockerfile` links
- [`1.1.38`, `1.1`](https://github.com/grmvoid/docker-bun/blob/master/1.1/Dockerfile)
- [`1.0.36`, `1.0`](https://github.com/grmvoid/docker-bun/blob/master/1.0/Dockerfile)## How to use this image
Create a `Dockerfile`
```Dockerfile
FROM grmvoid/bun:1.1.38
COPY . /app
WORKDIR /app
CMD [ "bun", "./script.js" ]
```
Then, build and run the Docker image```bash
docker build -t bun-app
```
```bash
docker run -it --rm --name custom-bun bun-app
```## License
View [license](https://bun.sh/docs/project/licensing) information for the software contained in this image.