Skip to content

Commit c665025

Browse files
author
Gonzalo Diaz
committed
[CONFIG] [Docker] Ubuntu base image regressed to 22.04
1 parent 390959b commit c665025

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.04 AS init
1+
FROM ubuntu:22.04 AS init
22

33
ENV WORKDIR=/app
44
WORKDIR ${WORKDIR}
@@ -16,7 +16,7 @@ RUN apt-get update && \
1616
rm -rf /var/lib/apt/lists/*
1717
ADD https://apt.llvm.org/llvm-snapshot.gpg.key llvm-snapshot.gpg.key
1818
RUN apt-key add llvm-snapshot.gpg.key && \
19-
apt-add-repository "deb http://apt.llvm.org/noble/ llvm-toolchain-noble main" && \
19+
apt-add-repository "deb http://apt.llvm.org/jammy/ llvm-toolchain-jammy main" && \
2020
apt-get -y update && \
2121
apt-get -y install --no-install-recommends --no-install-suggests build-essential cmake g++ make pkg-config && \
2222
apt-get -y install --no-install-recommends --no-install-suggests clang-format && \
@@ -98,7 +98,7 @@ COPY --from=builder ${WORKDIR}/build ${WORKDIR}/
9898

9999
CMD ["make", "test"]
100100

101-
FROM ubuntu:24.04 AS production
101+
FROM ubuntu:22.04 AS production
102102

103103
ENV LOG_LEVEL=INFO
104104
ENV BRUTEFORCE=false

0 commit comments

Comments
 (0)