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.
2 parents 9cb7ae4 + 08b082e commit a64aeb0Copy full SHA for a64aeb0
Dockerfile
@@ -1,4 +1,5 @@
1
-FROM ubuntu:noble-20250415.1 AS init
+ARG BASE_IMAGE_VERSION=ubuntu:noble-20250415.1
2
+FROM ${BASE_IMAGE_VERSION} AS init
3
4
ENV WORKDIR=/app
5
WORKDIR ${WORKDIR}
@@ -111,7 +112,7 @@ COPY --from=builder ${WORKDIR}/build ${WORKDIR}/
111
112
113
CMD ["make", "test"]
114
-FROM ubuntu:noble-20250415.1 AS production
115
+FROM ${BASE_IMAGE_VERSION} AS production
116
117
ENV LOG_LEVEL=INFO
118
ENV BRUTEFORCE=false
0 commit comments