cicd: Add target integration testing image

This commit is contained in:
jamesread 2022-01-06 00:09:25 +00:00
parent acaf28e200
commit 59f214fd45
1 changed files with 5 additions and 0 deletions

View File

@ -46,6 +46,11 @@ podman-container:
podman create --name olivetin -p 1337:1337 -v /etc/OliveTin/:/config:ro olivetin
podman start olivetin
integration-tests-docker-image:
docker rm -f olivetin && docker rmi -f olivetin
docker build -t olivetin:latest .
docker create --name olivetin -p 1337:1337 -v `pwd`/integration-tests/configs/:/config/ olivetin
devrun: compile
killall OliveTin || true
./OliveTin &