-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
77450cb
commit fc0bb1f
Showing
3 changed files
with
108 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,53 +7,47 @@ ARG SUBSTRATE_CLI_GIT_COMMIT_HASH | |
# Incremental compilation here isn't helpful | ||
ENV CARGO_INCREMENTAL=0 | ||
|
||
WORKDIR /subcoin | ||
WORKDIR /src | ||
|
||
RUN \ | ||
apt-get update && \ | ||
RUN apt-get update && \ | ||
DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \ | ||
ca-certificates \ | ||
protobuf-compiler \ | ||
clang \ | ||
cmake \ | ||
curl \ | ||
git \ | ||
llvm \ | ||
clang \ | ||
cmake \ | ||
protobuf-compiler \ | ||
make && \ | ||
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y | ||
|
||
# Copy the source code | ||
COPY . . | ||
|
||
RUN /root/.cargo/bin/cargo build --locked --profile=$PROFILE | ||
# Compile the binary and move it to /subcoin. | ||
RUN /root/.cargo/bin/cargo build \ | ||
--locked \ | ||
--bin subcoin \ | ||
--profile=$PROFILE \ | ||
--target $(uname -p)-unknown-linux-gnu && \ | ||
mv target/*/*/subcoin /subcoin && \ | ||
rm -rf target | ||
|
||
# This is the 2nd stage: a very small image where we copy the binary. | ||
FROM docker.io/library/ubuntu:22.04 | ||
LABEL description="Multistage Docker image for Subcoin Node" \ | ||
image.type="builder" \ | ||
image.authors="[email protected]" \ | ||
image.vendor="Subcoin Contributors" \ | ||
image.description="Multistage Docker image for Subnode Node" \ | ||
image.source="https://github.com/subcoin-project/subcoin" \ | ||
image.documentation="https://subcoin-project.github.io/subcoin" | ||
FROM ubuntu:22.04 | ||
|
||
ARG PROFILE=production | ||
LABEL org.opencontainers.image.source="https://github.com/subcoin-project/subcoin" | ||
LABEL org.opencontainers.image.description="Multistage Docker image for Subcoin Node" \ | ||
|
||
# Copy the node binary. | ||
COPY --from=builder /subcoin/target/$PROFILE/subcoin /usr/local/bin | ||
COPY --from=builder /subcoin /subcoin | ||
|
||
RUN mkdir /node-data && chown nobody:nogroup /node-data | ||
|
||
RUN useradd -m -u 1000 -U -s /bin/sh -d /node-dev node-dev && \ | ||
mkdir -p /chain-data /node-dev/.local/share && \ | ||
chown -R node-dev:node-dev /chain-data && \ | ||
ln -s /chain-data /node-dev/.local/share/subcoin && \ | ||
# unclutter and minimize the attack surface | ||
rm -rf /usr/bin /usr/sbin && \ | ||
# check if executable works in this container | ||
/usr/local/bin/subcoin --help | ||
VOLUME ["/node-data"] | ||
|
||
USER node-dev | ||
USER nobody:nogroup | ||
|
||
EXPOSE 30333 9933 9944 9615 | ||
VOLUME ["/chain-data"] | ||
|
||
ENTRYPOINT ["/usr/local/bin/subcoin"] | ||
ENTRYPOINT ["/subcoin"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
# This is a base image to build Subcoin node | ||
FROM ubuntu:22.04 AS builder | ||
|
||
# By default, we use the stable Rust. However, we encountered some network issues | ||
# during the docker build processing in CI. Now we compile the binary using nightly | ||
# so that the network issue in CI can be mitigated via the unstable flag `-Zgitoxide -Zgit`. | ||
ARG RUSTC_VERSION=nightly-2024-06-29 | ||
|
||
ARG PROFILE=production | ||
ARG SUBSTRATE_CLI_GIT_COMMIT_HASH | ||
ARG TARGET=aarch64-unknown-linux-gnu | ||
|
||
# Incremental compilation here isn't helpful | ||
ENV CARGO_INCREMENTAL=0 | ||
|
||
ENV RUSTFLAGS="-C linker=aarch64-linux-gnu-gcc" | ||
ENV PKG_CONFIG_ALLOW_CROSS=true | ||
|
||
WORKDIR /src | ||
|
||
RUN apt-get update && \ | ||
DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \ | ||
ca-certificates \ | ||
clang \ | ||
cmake \ | ||
curl \ | ||
git \ | ||
llvm \ | ||
protobuf-compiler \ | ||
make && \ | ||
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain $RUSTC_VERSION | ||
|
||
# Dependencies necessary for cross-compilation. | ||
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \ | ||
g++-aarch64-linux-gnu \ | ||
gcc-aarch64-linux-gnu \ | ||
libc6-dev-arm64-cross && \ | ||
/root/.cargo/bin/rustup target add $TARGET && \ | ||
/root/.cargo/bin/rustup target add wasm32-unknown-unknown --toolchain $RUSTC_VERSION-$TARGET | ||
|
||
# Copy the source code | ||
COPY . . | ||
|
||
# Compile the binary and move it to /subcoin. | ||
RUN /root/.cargo/bin/cargo +$RUSTC_VERSION -Zgitoxide -Zgit build \ | ||
--locked \ | ||
--bin subcoin \ | ||
--profile=$PROFILE \ | ||
--target aarch64-unknown-linux-gnu && \ | ||
mv target/*/*/subcoin /subcoin && \ | ||
rm -rf target | ||
|
||
# This is the 2nd stage: a very small image where we copy the binary. | ||
FROM arm64v8/ubuntu:22.04 | ||
|
||
LABEL org.opencontainers.image.source="https://github.com/subcoin-project/subcoin" | ||
LABEL org.opencontainers.image.description="Multistage Docker image for Subcoin Node" | ||
|
||
# Copy the node binary. | ||
COPY --from=builder /subcoin /subcoin | ||
|
||
RUN mkdir /node-data && chown nobody:nogroup /node-data | ||
|
||
VOLUME ["/node-data"] | ||
|
||
USER nobody:nogroup | ||
|
||
EXPOSE 30333 9933 9944 9615 | ||
|
||
ENTRYPOINT ["/subcoin"] |