Skip to content

Commit 7ef0146

Browse files
missing deps + clean apt files
1 parent 16da418 commit 7ef0146

File tree

1 file changed

+12
-3
lines changed

1 file changed

+12
-3
lines changed

.devcontainer/Dockerfile

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,17 @@
11
FROM ubuntu:22.04
22

33
RUN export DEBIAN_FRONTEND=noninteractive \
4-
&& apt-get update \
5-
&& apt-get -y install git g++ cmake libssl-dev \
6-
libgtest-dev clang-format clang-tidy doxygen
4+
&& apt-get update && apt-get -y install \
5+
clang++ \
6+
clang-format \
7+
clang-tidy \
8+
cmake \
9+
doxygen \
10+
graphviz \
11+
git \
12+
g++ \
13+
libssl-dev \
14+
libgtest-dev \
15+
&& rm -rf /var/lib/apt/lists/*
716

817
ENV CMAKE_CXX_CLANG_TIDY="clang-tidy;-fix"

0 commit comments

Comments
 (0)