We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 636c3f0 commit 85a94c5Copy full SHA for 85a94c5
docker/Dockerfile
@@ -4,7 +4,7 @@
4
# by running something like the following
5
# docker build --target STAGE -f docker/Dockerfile .
6
7
-FROM rust:latest as graph-node-build
+FROM rust:buster as graph-node-build
8
9
ARG COMMIT_SHA=unknown
10
ARG REPO_NAME=unknown
@@ -14,6 +14,7 @@ ARG TAG_NAME=unknown
14
ADD . /graph-node
15
16
RUN cd /graph-node \
17
+ && rustup component add rustfmt \
18
&& RUSTFLAGS="-g" cargo install --locked --path node \
19
&& cargo clean \
20
&& objcopy --only-keep-debug /usr/local/cargo/bin/graph-node /usr/local/cargo/bin/graph-node.debug \
0 commit comments