forked from near/nearcore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile.sandbox
53 lines (39 loc) · 1.34 KB
/
Dockerfile.sandbox
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
# syntax=docker/dockerfile-upstream:experimental
FROM ubuntu:18.04 as build
RUN apt-get update -qq && apt-get install -y \
git \
cmake \
g++ \
pkg-config \
libssl-dev \
curl \
llvm \
clang \
&& rm -rf /var/lib/apt/lists/*
COPY ./rust-toolchain /tmp/rust-toolchain
ENV RUSTUP_HOME=/usr/local/rustup \
CARGO_HOME=/usr/local/cargo \
PATH=/usr/local/cargo/bin:$PATH
RUN curl https://sh.rustup.rs -sSf | \
sh -s -- -y --no-modify-path --default-toolchain "$(cat /tmp/rust-toolchain)"
VOLUME [ /near ]
WORKDIR /near
COPY . .
ENV CARGO_TARGET_DIR=/tmp/target
ENV RUSTC_FLAGS='-C target-cpu=x86-64'
ENV PORTABLE=ON
# TODO This is an exact copy of the Dockerfile.nightly Dockerfile, except with "--features nightly" replaced with "--features sandbox"
# We should consolidate these into a single Dockerfile that uses a build ARG to conditionally pass in a flag
RUN cargo +"$(cat /tmp/rust-toolchain)" build -p neard --features sandbox --release && \
mkdir /tmp/build && \
cd /tmp/target/release && \
mv ./neard /tmp/build
COPY scripts/run_docker.sh /tmp/build/run.sh
# Actual image
FROM ubuntu:18.04
EXPOSE 3030 24567
RUN apt-get update -qq && apt-get install -y \
libssl-dev ca-certificates \
&& rm -rf /var/lib/apt/lists/*
COPY --from=build /tmp/build/* /usr/local/bin
CMD ["/usr/local/bin/run.sh"]