forked from autonomys/subspace
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile-node
71 lines (54 loc) · 1.88 KB
/
Dockerfile-node
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
FROM ubuntu:20.04
ARG RUSTC_VERSION=nightly-2022-08-12
ARG PROFILE=production
ARG RUSTFLAGS
# Workaround for https://github.com/rust-lang/cargo/issues/10583
ENV CARGO_NET_GIT_FETCH_WITH_CLI=true
# Incremental compilation here isn't helpful
ENV CARGO_INCREMENTAL=0
WORKDIR /code
RUN \
apt-get update && \
DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
ca-certificates \
curl \
git \
llvm \
clang \
cmake \
make && \
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain $RUSTC_VERSION
RUN /root/.cargo/bin/rustup target add wasm32-unknown-unknown
COPY Cargo.lock /code/Cargo.lock
COPY Cargo.toml /code/Cargo.toml
COPY rust-toolchain.toml /code/rust-toolchain.toml
COPY crates /code/crates
COPY cumulus /code/cumulus
COPY orml /code/orml
COPY substrate /code/substrate
COPY test /code/test
# Up until this line all Rust images in this repo should be the same to share the same layers
ARG SUBSTRATE_CLI_GIT_COMMIT_HASH
RUN \
/root/.cargo/bin/cargo build \
-Z build-std \
--profile $PROFILE \
--bin subspace-node \
--target $(uname -p)-unknown-linux-gnu && \
mv target/*/*/subspace-node subspace-node && \
rm -rf target
FROM ubuntu:20.04
RUN \
apt-get update && \
DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends ca-certificates curl && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*
HEALTHCHECK CMD curl \
-H "Content-Type: application/json" \
-d '{ "id": 1, "jsonrpc": "2.0", "method": "system_health", "params": [] }' \
-f "http://localhost:9933"
COPY --from=0 /code/subspace-node /subspace-node
RUN mkdir /var/subspace && chown nobody:nogroup /var/subspace
VOLUME /var/subspace
USER nobody:nogroup
ENTRYPOINT ["/subspace-node"]