Skip to content

Commit

Permalink
Merge pull request #1 from cpp-playground/add_python_formatters
Browse files Browse the repository at this point in the history
Update Dockerfile
  • Loading branch information
Yuki-cpp authored Apr 20, 2024
2 parents a75730f + 0ec78c4 commit 87afca9
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion 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
RUN apt-get -y install wget build-essential cmake git software-properties-common curl zip unzip tar pkg-config python3 python3-pip

FROM base AS clang_setup
RUN wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key| apt-key add -
Expand All @@ -17,3 +17,6 @@ FROM clang_setup AS vcpkg_setup
RUN git clone https://github.com/Microsoft/vcpkg.git /vcpkg
RUN /vcpkg/bootstrap-vcpkg.sh
ENV VCPKG_INSTALLATION_ROOT=/vcpkg

FROM vcpkg_setup AS final
RUN pip3 install cmakelang

0 comments on commit 87afca9

Please sign in to comment.