Skip to content

Commit c794a69

Browse files
ApolloLVmmaehren
authored andcommitted
Do not use cache for the base image
I have the issue that even after running setup.sh, the new sid release is not used, resulting in a build failure of s2n
1 parent bcefba9 commit c794a69

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

images/baseimage/build-base-image.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,17 @@ cd "$(dirname "$0")" || exit 1
33
source ../helper-functions.sh
44

55
# https://wiki.alpinelinux.org/wiki/Alpine_Linux:Releases
6-
_docker build --build-arg VERSION=3.12 -t alpine-build:3.12 .
6+
_docker build --build-arg VERSION=3.12 --no-cache -t alpine-build:3.12 .
77
#_docker build --build-arg VERSION=3.11 -t alpine-build:3.11 .
88
#_docker build --build-arg VERSION=3.10 -t alpine-build:3.10 .
99
#_docker build --build-arg VERSION=3.9 -t alpine-build:3.9 .
1010
#_docker build --build-arg VERSION=3.8 -t alpine-build:3.8 .
1111
#_docker build --build-arg VERSION=3.7 -t alpine-build:3.7 .
12-
_docker build --build-arg VERSION=3.6 -t alpine-build:3.6 .
12+
_docker build --build-arg VERSION=3.6 --no-cache -t alpine-build:3.6 .
1313
#_docker build --build-arg VERSION=3.5 -t alpine-build:3.5 .
1414
#_docker build --build-arg VERSION=3.4 -t alpine-build:3.4 .
1515

16-
_docker build --build-arg VERSION=sid -t debian-build:sid -f Dockerfile_debian .
16+
_docker build --build-arg VERSION=sid --no-cache -t debian-build:sid -f Dockerfile_debian .
1717

1818
_docker build -t entrypoint -f Dockerfile_entrypoint .
1919

0 commit comments

Comments
 (0)