Skip to content

Commit 3363801

Browse files
committed
Fix Dockerfile
1 parent 6e404c0 commit 3363801

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.devcontainer/Dockerfile

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,12 @@ ARG VARIANT=ubuntu-20.04
22
FROM mcr.microsoft.com/vscode/devcontainers/cpp:0-${VARIANT}
33

44
RUN apt-get update && apt-get install -y \
5-
git python python3.8-venv pip pipx \
5+
python python3.8-venv pip pipx \
66
&& rm -rf /var/lib/apt/lists/*
77

8-
RUN pip install clang-format && pip install pre-commit
8+
RUN pip install clang-format pre-commit
9+
10+
COPY . /home/traits
11+
WORKDIR /home/traits
912

1013
RUN pre-commit install

0 commit comments

Comments
 (0)