https://github.com/gtramontina/docker-esbuild
Docker image for https://esbuild.github.io
https://github.com/gtramontina/docker-esbuild
Last synced: 3 months ago
JSON representation
Docker image for https://esbuild.github.io
- Host: GitHub
- URL: https://github.com/gtramontina/docker-esbuild
- Owner: gtramontina
- Created: 2021-07-24T16:16:17.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2024-12-23T06:40:26.000Z (6 months ago)
- Last Synced: 2025-01-27T10:23:09.373Z (4 months ago)
- Language: Makefile
- Homepage:
- Size: 25.4 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Docker image for [`esbuild`](https://esbuild.github.io)
Package information: [pkgs/container/esbuild](https://github.com/gtramontina/docker-esbuild/pkgs/container/esbuild)
### _Running:_
```sh
docker run -i --rm -v $(pwd):/src ghcr.io/gtramontina/esbuild: [esbuild-arguments]
```The `/src` directory is where your source code will be mounted to.
### _Developing:_
```sh
make build # Builds a new image
make test # Runs/tests the image
make push # Pushes the image up
make clean # Removes any generated artifacts
make clobber # Removes artifacts and generated images
```---