Skip to content

Commit a1d1c73

Browse files
committed
Update devcontainer
1 parent ea9596d commit a1d1c73

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.devcontainer/Dockerfile

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
FROM ubuntu:latest
1+
ARG VARIANT=ubuntu-20.04
2+
FROM mcr.microsoft.com/vscode/devcontainers/cpp:0-${VARIANT}
23

34
RUN apt-get update && apt-get install -y \
4-
build-essential \
5-
cmake \
6-
git \
7-
clang \
8-
lldb \
9-
gdb \
5+
python python3.8-venv pip pipx \
106
&& rm -rf /var/lib/apt/lists/*
7+
8+
RUN pip install clang-format pre-commit
9+
10+
RUN pre-commit install

0 commit comments

Comments
 (0)