Skip to content
Snippets Groups Projects
Commit 490cea77 authored by Cam Saul's avatar Cam Saul
Browse files

Use docker --no-cache --pull for building Docker images

parent 2987eb8a
No related branches found
Tags v0.37.8 v1.37.8
No related merge requests found
......@@ -10,7 +10,7 @@
(u/delete-file-if-exists! uberjar-path)
(u/copy-file! (u/assert-file-exists c/uberjar-path) uberjar-path)
(u/assert-file-exists uberjar-path)
(u/sh "docker" "build" "-t" (c/docker-tag) docker-dir))))
(u/sh "docker" "build" "--no-cache" "--pull" "-t" (c/docker-tag) docker-dir))))
(defn- validate-docker-image []
(u/step "Validate Docker image"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment