From 5cd1b1f0d1da81879259a91c26d49a3bc6b3bb3d Mon Sep 17 00:00:00 2001 From: Leo Date: Sat, 20 Apr 2024 15:07:39 +0900 Subject: [PATCH] Update Dockerfile --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 5876506..ccbf53b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ FROM ubuntu:22.04 AS base RUN apt-get update -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 FROM base AS clang_setup RUN wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key| apt-key add - @@ -19,5 +19,5 @@ RUN /vcpkg/bootstrap-vcpkg.sh ENV VCPKG_INSTALLATION_ROOT=/vcpkg FROM vcpkg_setup AS final -RUN python -m ensurepip --upgrade -RUN pip install cmakelang +RUN python3 -m ensurepip --upgrade +RUN pip3 install cmakelang