We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6e404c0 commit 3363801Copy full SHA for 3363801
.devcontainer/Dockerfile
@@ -2,9 +2,12 @@ ARG VARIANT=ubuntu-20.04
2
FROM mcr.microsoft.com/vscode/devcontainers/cpp:0-${VARIANT}
3
4
RUN apt-get update && apt-get install -y \
5
- git python python3.8-venv pip pipx \
+ python python3.8-venv pip pipx \
6
&& rm -rf /var/lib/apt/lists/*
7
8
-RUN pip install clang-format && pip install pre-commit
+RUN pip install clang-format pre-commit
9
+
10
+COPY . /home/traits
11
+WORKDIR /home/traits
12
13
RUN pre-commit install
0 commit comments