File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,8 @@ RUN apt-get -y update && \
10
10
FROM init AS builder
11
11
12
12
# build tools
13
+ ARG DEBIAN_FRONTEND=noninteractive
14
+ ENV TZ=Etc/UTC
13
15
14
16
RUN apt-get update && \
15
17
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 && \
19
21
apt-add-repository "deb http://apt.llvm.org/jammy/ llvm-toolchain-jammy main" && \
20
22
apt-get -y update && \
21
23
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 && \
24
25
rm -rf /var/lib/apt/lists/*
25
26
26
27
# vcpkg Package Manager
You can’t perform that action at this time.
0 commit comments