https://github.com/just-js/docker
docker builds
https://github.com/just-js/docker
Last synced: 2 months ago
JSON representation
docker builds
- Host: GitHub
- URL: https://github.com/just-js/docker
- Owner: just-js
- Created: 2020-07-20T09:01:14.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2022-05-02T21:06:57.000Z (about 3 years ago)
- Last Synced: 2025-01-21T18:48:40.485Z (4 months ago)
- Language: Makefile
- Size: 16.6 KB
- Stars: 8
- Watchers: 3
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# just-js docker images and container builds
## building debian docker image
```bash
make debian
```## building distroless docker image
```bash
make distroless
```## running in gvisor
```bash
docker export $(docker create hello-world) | tar -xf - -C rootfs
cp just rootfs/
runsc spec -- /just
sudo runsc run just
```