We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f1fda2e commit 5cd1b1fCopy full SHA for 5cd1b1f
Dockerfile
@@ -1,6 +1,6 @@
1
FROM ubuntu:22.04 AS base
2
RUN apt-get update
3
-RUN apt-get -y install wget build-essential cmake git software-properties-common curl zip unzip tar pkg-config python
+RUN apt-get -y install wget build-essential cmake git software-properties-common curl zip unzip tar pkg-config python3
4
5
FROM base AS clang_setup
6
RUN wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key| apt-key add -
@@ -19,5 +19,5 @@ RUN /vcpkg/bootstrap-vcpkg.sh
19
ENV VCPKG_INSTALLATION_ROOT=/vcpkg
20
21
FROM vcpkg_setup AS final
22
-RUN python -m ensurepip --upgrade
23
-RUN pip install cmakelang
+RUN python3 -m ensurepip --upgrade
+RUN pip3 install cmakelang
0 commit comments