21 lines
569 B
Markdown
21 lines
569 B
Markdown
# Build instructions
|
|
|
|
Update dependent images:
|
|
```commandline
|
|
docker image pull gentoo/portage:latest
|
|
docker image pull gentoo/stage3:amd64-nomultilib-openrc
|
|
```
|
|
|
|
Run `docker build .` in this directory. After the build succeeds, note the image hash.
|
|
|
|
# Publishing
|
|
Tag the built image with the current date as the name:
|
|
```commandline
|
|
docker image tag <hash> fritteli/pkgcheck:yyyyMMdd
|
|
docker image tag <hash> fritteli/pkgcheck:latest
|
|
```
|
|
Push the tagged images:
|
|
```commandline
|
|
docker image push fritteli/pkgcheck:yyyyMMdd
|
|
docker image push fritteli/pkgcheck:latest
|
|
```
|