Skip to content

Commit e37d340

Browse files
author
Gonzalo Diaz
committed
[CONFIG] [Docker] Ubuntu base image regressed to 22.04
1 parent c8cf0c2 commit e37d340

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
@@ -10,6 +10,8 @@ RUN apt-get -y update && \
1010
FROM init AS builder
1111

1212
# build tools
13+
ARG DEBIAN_FRONTEND=noninteractive
14+
ENV TZ=Etc/UTC
1315

1416
RUN apt-get update && \
1517
apt-get -y install --no-install-recommends --no-install-suggests gnupg software-properties-common && \
@@ -19,8 +21,7 @@ RUN apt-key add llvm-snapshot.gpg.key && \
1921
apt-add-repository "deb http://apt.llvm.org/jammy/ llvm-toolchain-jammy main" && \
2022
apt-get -y update && \
2123
apt-get -y install --no-install-recommends --no-install-suggests clang-format && \
22-
DEBIAN_FRONTEND=noninteractive TZ=Etc/UTC apt-get -y install tzdata && \
23-
apt-get -y install --no-install-recommends --no-install-suggests build-essential cmake g++ make && \
24+
apt-get -y install --no-install-recommends --no-install-suggests build-essential cmake g++ make pkg-config && \
2425
rm -rf /var/lib/apt/lists/*
2526

2627
# vcpkg Package Manager

0 commit comments

Comments
 (0)