From 725544f3b4f96687191975b52c42e864474dbd80 Mon Sep 17 00:00:00 2001 From: OpenSauce04 Date: Sun, 24 May 2026 19:05:02 +0100 Subject: [PATCH] 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 --- .ci/docker.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.ci/docker.sh b/.ci/docker.sh index 1747f8832..b7f31f937 100755 --- a/.ci/docker.sh +++ b/.ci/docker.sh @@ -12,9 +12,9 @@ fi 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 FILENAME="azahar-room-$TAG_NAME.dockerimage" docker save azahar-room:$TAG_NAME > build/$FILENAME -echo "DOCKER_IMAGE_PATH=artifacts/$FILENAME" >> $GITHUB_ENV \ No newline at end of file +echo "DOCKER_IMAGE_PATH=artifacts/$FILENAME" >> $GITHUB_ENV