We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c079d82 commit 073dd2aCopy full SHA for 073dd2a
scripts/docker/build.sh
@@ -163,8 +163,10 @@ export_docker_tag
163
164
BUILD_NETWORK="--network=host"
165
166
-# Prune old docker images (24 hours)
167
-docker system prune --all --filter until=24h
+# Prune old docker images (24 hours) from the cache
+# This is a temporary solution to keep the cache from growing too large.
168
+# We will also need to evaluate the impact of this on the build process and adjust as necessary.
169
+docker system prune --all --force --filter until=24h
170
171
# If DOCKER_CONTEXT is not specified, assume none and just pipe the dockerfile into docker build
172
if [[ -z "${DOCKER_CONTEXT}" ]]; then
0 commit comments