forked from autonomys/subspace
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile-runtime
55 lines (46 loc) · 1.53 KB
/
Dockerfile-runtime
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
FROM ubuntu:20.04
ARG RUSTC_VERSION=nightly-2024-02-29
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 \
protobuf-compiler \
curl \
git \
llvm \
clang \
automake \
libtool \
pkg-config \
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 /code/.cargo
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 domains /code/domains
COPY orml /code/orml
COPY shared /code/shared
COPY test /code/test
# Up until this line all Rust images in this repo should be the same to share the same layers
RUN \
/root/.cargo/bin/cargo -Zgitoxide -Zgit build \
--locked \
-Z build-std \
--profile $PROFILE \
--package subspace-runtime \
--target x86_64-unknown-linux-gnu && \
mv \
target/*/*/wbuild/subspace-runtime/subspace_runtime.compact.compressed.wasm \
subspace_runtime.compact.compressed.wasm && \
rm -rf target
ENTRYPOINT ["/usr/bin/cat", "subspace_runtime.compact.compressed.wasm"]