An open API service indexing awesome lists of open source software.

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

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.