We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 29ac76c commit 9453b3fCopy full SHA for 9453b3f
.devcontainer/Dockerfile
@@ -1,8 +1,11 @@
1
FROM rust:1-buster
2
3
+RUN apt-get update && \
4
+ DEBIAN_FRONTEND=noninteractive apt-get install -y curl python3 python3-pip make gcc && \
5
+ curl -fsSL https://deb.nodesource.com/setup_21.x | bash - && \
6
+ apt-get install -y nodejs
7
-RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y curl \
- python3 python3-pip nodejs npm make gcc
8
+RUN rustup component add clippy
9
10
COPY Makefile /tmp/Makefile
-RUN make -f /tmp/Makefile dependencies
11
+RUN make -j -f /tmp/Makefile dependencies
0 commit comments