Skip to content

Commit

Permalink
adding vcpkg stuff on dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
andrelcmoreira committed Aug 27, 2024
1 parent 5f3521d commit 12859b1
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,20 @@
FROM debian:latest

RUN apt update -y
RUN apt install cmake gcc g++ clang -y # building tools
RUN apt install doxygen python3 python3-pip -y # utils
RUN apt install cmake gcc g++ -y # building tools
RUN apt install doxygen git python3 python3-pip -y # utils
RUN apt install cppcheck gcovr valgrind -y # qa tools
RUN apt install libgmock-dev libgtest-dev -y # frameworks
RUN apt install curl zip unzip tar -y # vcpkg dependencies
RUN pip3 install --break-system-packages cpplint # python packages

# vcpkg stuff
RUN git clone https://github.com/microsoft/vcpkg.git /opt/vcpkg
RUN cd /opt/vcpkg && ./bootstrap-vcpkg.sh

ENV VCPKG_ROOT /opt/vcpkg
ENV PATH $VCPKG_ROOT:$PATH

WORKDIR /pool-day

ENTRYPOINT ["/bin/sh", "-c"]

0 comments on commit 12859b1

Please sign in to comment.