You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
637 B

4 years ago
### Build image
```
docker build -t skiko-build-ubuntu-1404-amd64:latest .
```
### Run container
```
docker run -it skiko-build-ubuntu-1404-amd64:latest
```
* To customize memory constraints, use `-m` argument (e.g. `-m 2G`)
* To customize number of available CPU cores, use `--cpus` argument (e.g. `--cpus=2`)
### Publish image to Compose repo
```
docker login public.registry.jetbrains.space
docker tag skiko-build-ubuntu-1404-amd64:latest public.registry.jetbrains.space/p/compose/docker/skiko-build-ubuntu-1404-amd64:latest
docker push public.registry.jetbrains.space/p/compose/docker/skiko-build-ubuntu-1404-amd64:latest
```