We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f2308ac commit ffafc06Copy full SHA for ffafc06
docker/build_ubuntu-22.04/Dockerfile
@@ -2,7 +2,15 @@ FROM ubuntu:22.04
2
RUN \
3
dpkg --add-architecture i386 && \
4
apt-get update && \
5
- apt-get install -y --only-upgrade ca-certificates && \
+ apt-get install -y \
6
+ gpg \
7
+ wget \
8
+ && \
9
+ wget -O- https://apt.kitware.com/keys/kitware-archive-latest.asc 2>/dev/null | \
10
+ gpg --dearmor - | \
11
+ tee /usr/share/keyrings/kitware-archive-keyring.gpg >/dev/null && \
12
+ echo 'deb [signed-by=/usr/share/keyrings/kitware-archive-keyring.gpg] https://apt.kitware.com/ubuntu/ jammy main' | \
13
+ tee /etc/apt/sources.list.d/kitware.list >/dev/null && \
14
apt-get install -y \
15
cmake \
16
ninja-build \
0 commit comments