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

https://github.com/just-js/docker

docker builds
https://github.com/just-js/docker

Last synced: 2 months ago
JSON representation

docker builds

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
```