Skip to content

Commit

Permalink
Update Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
Yuki-cpp authored Apr 20, 2024
1 parent f1fda2e commit 5cd1b1f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -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 -
Expand All @@ -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

0 comments on commit 5cd1b1f

Please sign in to comment.