Skip to content

Commit 7ba2eed

Browse files
authored
Merge pull request #43 from sir-gon/develop
[Docker] Parametric base image version.
2 parents 20d1bd9 + fad0b77 commit 7ba2eed

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

Dockerfile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
FROM ubuntu:noble-20250415.1 AS init
1+
ARG BASE_IMAGE_VERSION=ubuntu:noble-20250404
2+
FROM ${BASE_IMAGE_VERSION} AS init
23

34
ENV WORKDIR=/app
45
WORKDIR ${WORKDIR}
@@ -113,7 +114,7 @@ COPY --from=builder ${WORKDIR}/build ${WORKDIR}/
113114

114115
CMD ["make", "test"]
115116

116-
FROM ubuntu:noble-20250415.1 AS production
117+
FROM ${BASE_IMAGE_VERSION} AS production
117118

118119
ENV LOG_LEVEL=INFO
119120
ENV BRUTEFORCE=false

0 commit comments

Comments
 (0)