mirror of
https://github.com/azahar-emu/azahar.git
synced 2026-06-06 02:33:44 -04:00
ci: Add --no-cache to Docker build command
This is mostly just for specificity. In practice this will never do anything in CI because there will never be any cache to use, but if there was, we wouldn't want to use it
This commit is contained in:
parent
135f10320a
commit
725544f3b4
1 changed files with 2 additions and 2 deletions
|
|
@ -12,7 +12,7 @@ fi
|
||||||
|
|
||||||
echo "Tag name is: $TAG_NAME"
|
echo "Tag name is: $TAG_NAME"
|
||||||
|
|
||||||
docker build -f docker/azahar-room/Dockerfile -t azahar-room:$TAG_NAME .
|
docker build --no-cache -f docker/azahar-room/Dockerfile -t azahar-room:$TAG_NAME .
|
||||||
mkdir -p build
|
mkdir -p build
|
||||||
FILENAME="azahar-room-$TAG_NAME.dockerimage"
|
FILENAME="azahar-room-$TAG_NAME.dockerimage"
|
||||||
docker save azahar-room:$TAG_NAME > build/$FILENAME
|
docker save azahar-room:$TAG_NAME > build/$FILENAME
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue