Skip to content

Commit 87afca9

Browse files
authored
Merge pull request #1 from cpp-playground/add_python_formatters
Update Dockerfile
2 parents a75730f + 0ec78c4 commit 87afca9

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

Dockerfile

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM ubuntu:22.04 AS base
22
RUN apt-get update
3-
RUN apt-get -y install wget build-essential cmake git software-properties-common curl zip unzip tar pkg-config
3+
RUN apt-get -y install wget build-essential cmake git software-properties-common curl zip unzip tar pkg-config python3 python3-pip
44

55
FROM base AS clang_setup
66
RUN wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key| apt-key add -
@@ -17,3 +17,6 @@ FROM clang_setup AS vcpkg_setup
1717
RUN git clone https://github.com/Microsoft/vcpkg.git /vcpkg
1818
RUN /vcpkg/bootstrap-vcpkg.sh
1919
ENV VCPKG_INSTALLATION_ROOT=/vcpkg
20+
21+
FROM vcpkg_setup AS final
22+
RUN pip3 install cmakelang

0 commit comments

Comments
 (0)