Skip to content

Commit 0a60767

Browse files
author
Gonzalo Diaz
committed
[CONFIG] [Docker] Base image set to current LTS specific version: Ubuntu 24.04 Noble.
1 parent 18dba21 commit 0a60767

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ubuntu:24.10 AS init
1+
FROM ubuntu:noble-20241118.1 AS init
22

33
ENV WORKDIR=/app
44
WORKDIR ${WORKDIR}
@@ -15,7 +15,7 @@ ENV TZ=Etc/UTC
1515

1616
# build tools
1717
RUN apt-get update \
18-
&& apt-get -y install --no-install-recommends --no-install-suggests build-essential cmake gcc g++ make pkg-config \
18+
&& apt-get -y install --no-install-recommends --no-install-suggests build-essential cmake g++ gcc make pkg-config \
1919
&& rm -rf /var/lib/apt/lists/* \
2020
&& make --version \
2121
&& cmake --version \
@@ -112,7 +112,7 @@ COPY --from=builder ${WORKDIR}/build ${WORKDIR}/
112112

113113
CMD ["make", "test"]
114114

115-
FROM ubuntu:24.10 AS production
115+
FROM ubuntu:noble-20241118.1 AS production
116116

117117
ENV LOG_LEVEL=INFO
118118
ENV BRUTEFORCE=false

0 commit comments

Comments
 (0)