We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent baea05a commit 596a54fCopy full SHA for 596a54f
2 files changed
.devcontainer/Dockerfile
@@ -15,13 +15,15 @@ FROM mcr.microsoft.com/devcontainers/rust:latest
15
ARG USERNAME=vscode
16
ARG TARGETARCH
17
18
-RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
19
- && apt-get -y install \
+RUN apt-get update && \
+ export DEBIAN_FRONTEND=noninteractive && \
20
+ apt-get -y install \
21
curl \
22
gcc \
23
git \
24
openjdk-17-jre \
25
zip \
26
+ libclang-dev \
27
&& \
28
rm -rf /var/lib/apt/lists/*
29
@@ -44,5 +46,3 @@ USER ${USERNAME}
44
46
45
47
# Install cargo cli tools
48
RUN cargo install cargo-nextest cargo-deny cargo-tarpaulin --locked
-RUN sudo apt update && \
- sudo apt install -y libclang-dev
.devcontainer/devcontainer.json
@@ -83,4 +83,4 @@
83
]
84
}
85
86
-}
+}
0 commit comments