-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5f3521d
commit 12859b1
Showing
1 changed file
with
10 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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"] |