aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLibravatar vnugent <public@vaughnnugent.com>2024-04-27 23:11:48 -0400
committerLibravatar vnugent <public@vaughnnugent.com>2024-04-27 23:11:48 -0400
commit28f0f774da975c04271445761b2de31aecf969ff (patch)
treedda50874c1b3e6d06601e15e25823f185397c41e
parent22a1f5d374ec1a487944c6303066d0f15617cb12 (diff)
Add --no-cache arg to build image args
-rw-r--r--ci/container/Dockerfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/ci/container/Dockerfile b/ci/container/Dockerfile
index 05517df..a6d35d4 100644
--- a/ci/container/Dockerfile
+++ b/ci/container/Dockerfile
@@ -5,7 +5,7 @@
FROM alpine:3.19 as native-cont
#install public libs and build tools
-RUN apk update && apk add build-base cmake npm git
+RUN apk update && apk add --no-cache build-base cmake npm git
#most universal way to use Task is from NPM
RUN npm install -g @go-task/cli