Refactor Lotus Dockerfile
This is a major refactor of our dockerfile to support the following
- The lotus image will remain as is.
- The lotus-test image will be deprecated.
- The lotus-all-in-one image will also ship with the lotus-seed and lotus-fountain binaries, which it currently does not.
- The lotus-all-in-one image will be built in debug, calibnet, and butterflynet modes in addition to the (current) mainnet mode.
- The lotus-all-in-one image will now be published regularly using the following tags:
- 1.18.0-rc1 , 1.18.0-rc1-debug, 1.18.0-rc1-calibnet, 1.18.0-rc1-butterflynet . This pattern will be used for all lotus releases, including RC releases.
- nightly, nightly-debug, nightly-calibnet, nightly-butterflynet
- stable, stable-debug, stable-calibnet, stable-butterflynet
2022-10-20 20:15:13 +00:00
|
|
|
#####################################
|
2023-03-28 19:33:44 +00:00
|
|
|
FROM golang:1.19.7-buster AS lotus-builder
|
Refactor Lotus Dockerfile
This is a major refactor of our dockerfile to support the following
- The lotus image will remain as is.
- The lotus-test image will be deprecated.
- The lotus-all-in-one image will also ship with the lotus-seed and lotus-fountain binaries, which it currently does not.
- The lotus-all-in-one image will be built in debug, calibnet, and butterflynet modes in addition to the (current) mainnet mode.
- The lotus-all-in-one image will now be published regularly using the following tags:
- 1.18.0-rc1 , 1.18.0-rc1-debug, 1.18.0-rc1-calibnet, 1.18.0-rc1-butterflynet . This pattern will be used for all lotus releases, including RC releases.
- nightly, nightly-debug, nightly-calibnet, nightly-butterflynet
- stable, stable-debug, stable-calibnet, stable-butterflynet
2022-10-20 20:15:13 +00:00
|
|
|
MAINTAINER Lotus Development Team
|
|
|
|
|
|
|
|
RUN apt-get update && apt-get install -y ca-certificates build-essential clang ocl-icd-opencl-dev ocl-icd-libopencl1 jq libhwloc-dev
|
|
|
|
|
|
|
|
ENV XDG_CACHE_HOME="/tmp"
|
|
|
|
|
2022-11-08 17:58:35 +00:00
|
|
|
### taken from https://github.com/rust-lang/docker-rust/blob/master/1.63.0/buster/Dockerfile
|
Refactor Lotus Dockerfile
This is a major refactor of our dockerfile to support the following
- The lotus image will remain as is.
- The lotus-test image will be deprecated.
- The lotus-all-in-one image will also ship with the lotus-seed and lotus-fountain binaries, which it currently does not.
- The lotus-all-in-one image will be built in debug, calibnet, and butterflynet modes in addition to the (current) mainnet mode.
- The lotus-all-in-one image will now be published regularly using the following tags:
- 1.18.0-rc1 , 1.18.0-rc1-debug, 1.18.0-rc1-calibnet, 1.18.0-rc1-butterflynet . This pattern will be used for all lotus releases, including RC releases.
- nightly, nightly-debug, nightly-calibnet, nightly-butterflynet
- stable, stable-debug, stable-calibnet, stable-butterflynet
2022-10-20 20:15:13 +00:00
|
|
|
ENV RUSTUP_HOME=/usr/local/rustup \
|
|
|
|
CARGO_HOME=/usr/local/cargo \
|
2022-11-08 17:58:35 +00:00
|
|
|
PATH=/usr/local/cargo/bin:$PATH \
|
|
|
|
RUST_VERSION=1.63.0
|
Refactor Lotus Dockerfile
This is a major refactor of our dockerfile to support the following
- The lotus image will remain as is.
- The lotus-test image will be deprecated.
- The lotus-all-in-one image will also ship with the lotus-seed and lotus-fountain binaries, which it currently does not.
- The lotus-all-in-one image will be built in debug, calibnet, and butterflynet modes in addition to the (current) mainnet mode.
- The lotus-all-in-one image will now be published regularly using the following tags:
- 1.18.0-rc1 , 1.18.0-rc1-debug, 1.18.0-rc1-calibnet, 1.18.0-rc1-butterflynet . This pattern will be used for all lotus releases, including RC releases.
- nightly, nightly-debug, nightly-calibnet, nightly-butterflynet
- stable, stable-debug, stable-calibnet, stable-butterflynet
2022-10-20 20:15:13 +00:00
|
|
|
|
2022-11-08 17:58:35 +00:00
|
|
|
RUN set -eux; \
|
|
|
|
dpkgArch="$(dpkg --print-architecture)"; \
|
|
|
|
case "${dpkgArch##*-}" in \
|
|
|
|
amd64) rustArch='x86_64-unknown-linux-gnu'; rustupSha256='5cc9ffd1026e82e7fb2eec2121ad71f4b0f044e88bca39207b3f6b769aaa799c' ;; \
|
|
|
|
arm64) rustArch='aarch64-unknown-linux-gnu'; rustupSha256='e189948e396d47254103a49c987e7fb0e5dd8e34b200aa4481ecc4b8e41fb929' ;; \
|
|
|
|
*) echo >&2 "unsupported architecture: ${dpkgArch}"; exit 1 ;; \
|
|
|
|
esac; \
|
|
|
|
url="https://static.rust-lang.org/rustup/archive/1.25.1/${rustArch}/rustup-init"; \
|
|
|
|
wget "$url"; \
|
|
|
|
echo "${rustupSha256} *rustup-init" | sha256sum -c -; \
|
Refactor Lotus Dockerfile
This is a major refactor of our dockerfile to support the following
- The lotus image will remain as is.
- The lotus-test image will be deprecated.
- The lotus-all-in-one image will also ship with the lotus-seed and lotus-fountain binaries, which it currently does not.
- The lotus-all-in-one image will be built in debug, calibnet, and butterflynet modes in addition to the (current) mainnet mode.
- The lotus-all-in-one image will now be published regularly using the following tags:
- 1.18.0-rc1 , 1.18.0-rc1-debug, 1.18.0-rc1-calibnet, 1.18.0-rc1-butterflynet . This pattern will be used for all lotus releases, including RC releases.
- nightly, nightly-debug, nightly-calibnet, nightly-butterflynet
- stable, stable-debug, stable-calibnet, stable-butterflynet
2022-10-20 20:15:13 +00:00
|
|
|
chmod +x rustup-init; \
|
2022-11-08 17:58:35 +00:00
|
|
|
./rustup-init -y --no-modify-path --profile minimal --default-toolchain $RUST_VERSION --default-host ${rustArch}; \
|
Refactor Lotus Dockerfile
This is a major refactor of our dockerfile to support the following
- The lotus image will remain as is.
- The lotus-test image will be deprecated.
- The lotus-all-in-one image will also ship with the lotus-seed and lotus-fountain binaries, which it currently does not.
- The lotus-all-in-one image will be built in debug, calibnet, and butterflynet modes in addition to the (current) mainnet mode.
- The lotus-all-in-one image will now be published regularly using the following tags:
- 1.18.0-rc1 , 1.18.0-rc1-debug, 1.18.0-rc1-calibnet, 1.18.0-rc1-butterflynet . This pattern will be used for all lotus releases, including RC releases.
- nightly, nightly-debug, nightly-calibnet, nightly-butterflynet
- stable, stable-debug, stable-calibnet, stable-butterflynet
2022-10-20 20:15:13 +00:00
|
|
|
rm rustup-init; \
|
|
|
|
chmod -R a+w $RUSTUP_HOME $CARGO_HOME; \
|
|
|
|
rustup --version; \
|
|
|
|
cargo --version; \
|
|
|
|
rustc --version;
|
|
|
|
|
|
|
|
COPY ./ /opt/filecoin
|
|
|
|
WORKDIR /opt/filecoin
|
2022-11-08 17:58:35 +00:00
|
|
|
|
2023-01-26 13:25:47 +00:00
|
|
|
RUN scripts/docker-git-state-check.sh
|
|
|
|
|
2022-11-08 17:58:35 +00:00
|
|
|
### make configurable filecoin-ffi build
|
|
|
|
ARG FFI_BUILD_FROM_SOURCE=0
|
|
|
|
ENV FFI_BUILD_FROM_SOURCE=${FFI_BUILD_FROM_SOURCE}
|
|
|
|
|
Refactor Lotus Dockerfile
This is a major refactor of our dockerfile to support the following
- The lotus image will remain as is.
- The lotus-test image will be deprecated.
- The lotus-all-in-one image will also ship with the lotus-seed and lotus-fountain binaries, which it currently does not.
- The lotus-all-in-one image will be built in debug, calibnet, and butterflynet modes in addition to the (current) mainnet mode.
- The lotus-all-in-one image will now be published regularly using the following tags:
- 1.18.0-rc1 , 1.18.0-rc1-debug, 1.18.0-rc1-calibnet, 1.18.0-rc1-butterflynet . This pattern will be used for all lotus releases, including RC releases.
- nightly, nightly-debug, nightly-calibnet, nightly-butterflynet
- stable, stable-debug, stable-calibnet, stable-butterflynet
2022-10-20 20:15:13 +00:00
|
|
|
RUN make clean deps
|
|
|
|
|
|
|
|
ARG RUSTFLAGS=""
|
|
|
|
ARG GOFLAGS=""
|
|
|
|
|
|
|
|
RUN make buildall
|
|
|
|
|
|
|
|
#####################################
|
|
|
|
FROM ubuntu:20.04 AS lotus-base
|
|
|
|
MAINTAINER Lotus Development Team
|
|
|
|
|
|
|
|
# Base resources
|
|
|
|
COPY --from=lotus-builder /etc/ssl/certs /etc/ssl/certs
|
2022-11-08 17:58:35 +00:00
|
|
|
COPY --from=lotus-builder /lib/*/libdl.so.2 /lib/
|
|
|
|
COPY --from=lotus-builder /lib/*/librt.so.1 /lib/
|
|
|
|
COPY --from=lotus-builder /lib/*/libgcc_s.so.1 /lib/
|
|
|
|
COPY --from=lotus-builder /lib/*/libutil.so.1 /lib/
|
|
|
|
COPY --from=lotus-builder /usr/lib/*/libltdl.so.7 /lib/
|
|
|
|
COPY --from=lotus-builder /usr/lib/*/libnuma.so.1 /lib/
|
|
|
|
COPY --from=lotus-builder /usr/lib/*/libhwloc.so.5 /lib/
|
|
|
|
COPY --from=lotus-builder /usr/lib/*/libOpenCL.so.1 /lib/
|
Refactor Lotus Dockerfile
This is a major refactor of our dockerfile to support the following
- The lotus image will remain as is.
- The lotus-test image will be deprecated.
- The lotus-all-in-one image will also ship with the lotus-seed and lotus-fountain binaries, which it currently does not.
- The lotus-all-in-one image will be built in debug, calibnet, and butterflynet modes in addition to the (current) mainnet mode.
- The lotus-all-in-one image will now be published regularly using the following tags:
- 1.18.0-rc1 , 1.18.0-rc1-debug, 1.18.0-rc1-calibnet, 1.18.0-rc1-butterflynet . This pattern will be used for all lotus releases, including RC releases.
- nightly, nightly-debug, nightly-calibnet, nightly-butterflynet
- stable, stable-debug, stable-calibnet, stable-butterflynet
2022-10-20 20:15:13 +00:00
|
|
|
|
|
|
|
RUN useradd -r -u 532 -U fc \
|
|
|
|
&& mkdir -p /etc/OpenCL/vendors \
|
|
|
|
&& echo "libnvidia-opencl.so.1" > /etc/OpenCL/vendors/nvidia.icd
|
|
|
|
|
|
|
|
#####################################
|
|
|
|
FROM lotus-base AS lotus
|
|
|
|
MAINTAINER Lotus Development Team
|
|
|
|
|
|
|
|
COPY --from=lotus-builder /opt/filecoin/lotus /usr/local/bin/
|
|
|
|
COPY --from=lotus-builder /opt/filecoin/lotus-shed /usr/local/bin/
|
|
|
|
COPY scripts/docker-lotus-entrypoint.sh /
|
|
|
|
|
2022-11-14 14:26:57 +00:00
|
|
|
ARG DOCKER_LOTUS_IMPORT_SNAPSHOT https://snapshots.mainnet.filops.net/minimal/latest
|
|
|
|
ENV DOCKER_LOTUS_IMPORT_SNAPSHOT ${DOCKER_LOTUS_IMPORT_SNAPSHOT}
|
Refactor Lotus Dockerfile
This is a major refactor of our dockerfile to support the following
- The lotus image will remain as is.
- The lotus-test image will be deprecated.
- The lotus-all-in-one image will also ship with the lotus-seed and lotus-fountain binaries, which it currently does not.
- The lotus-all-in-one image will be built in debug, calibnet, and butterflynet modes in addition to the (current) mainnet mode.
- The lotus-all-in-one image will now be published regularly using the following tags:
- 1.18.0-rc1 , 1.18.0-rc1-debug, 1.18.0-rc1-calibnet, 1.18.0-rc1-butterflynet . This pattern will be used for all lotus releases, including RC releases.
- nightly, nightly-debug, nightly-calibnet, nightly-butterflynet
- stable, stable-debug, stable-calibnet, stable-butterflynet
2022-10-20 20:15:13 +00:00
|
|
|
ENV FILECOIN_PARAMETER_CACHE /var/tmp/filecoin-proof-parameters
|
|
|
|
ENV LOTUS_PATH /var/lib/lotus
|
|
|
|
ENV DOCKER_LOTUS_IMPORT_WALLET ""
|
|
|
|
|
|
|
|
RUN mkdir /var/lib/lotus /var/tmp/filecoin-proof-parameters
|
|
|
|
RUN chown fc: /var/lib/lotus /var/tmp/filecoin-proof-parameters
|
|
|
|
|
|
|
|
VOLUME /var/lib/lotus
|
|
|
|
VOLUME /var/tmp/filecoin-proof-parameters
|
|
|
|
|
|
|
|
USER fc
|
|
|
|
|
|
|
|
EXPOSE 1234
|
|
|
|
|
|
|
|
ENTRYPOINT ["/docker-lotus-entrypoint.sh"]
|
|
|
|
|
|
|
|
CMD ["-help"]
|
|
|
|
|
|
|
|
#####################################
|
|
|
|
FROM lotus-base AS lotus-all-in-one
|
|
|
|
|
|
|
|
ENV FILECOIN_PARAMETER_CACHE /var/tmp/filecoin-proof-parameters
|
|
|
|
ENV LOTUS_MINER_PATH /var/lib/lotus-miner
|
|
|
|
ENV LOTUS_PATH /var/lib/lotus
|
|
|
|
ENV LOTUS_WORKER_PATH /var/lib/lotus-worker
|
|
|
|
ENV WALLET_PATH /var/lib/lotus-wallet
|
|
|
|
|
|
|
|
COPY --from=lotus-builder /opt/filecoin/lotus /usr/local/bin/
|
|
|
|
COPY --from=lotus-builder /opt/filecoin/lotus-seed /usr/local/bin/
|
|
|
|
COPY --from=lotus-builder /opt/filecoin/lotus-shed /usr/local/bin/
|
|
|
|
COPY --from=lotus-builder /opt/filecoin/lotus-wallet /usr/local/bin/
|
|
|
|
COPY --from=lotus-builder /opt/filecoin/lotus-gateway /usr/local/bin/
|
|
|
|
COPY --from=lotus-builder /opt/filecoin/lotus-miner /usr/local/bin/
|
|
|
|
COPY --from=lotus-builder /opt/filecoin/lotus-worker /usr/local/bin/
|
|
|
|
COPY --from=lotus-builder /opt/filecoin/lotus-stats /usr/local/bin/
|
|
|
|
COPY --from=lotus-builder /opt/filecoin/lotus-fountain /usr/local/bin/
|
|
|
|
|
|
|
|
RUN mkdir /var/tmp/filecoin-proof-parameters
|
|
|
|
RUN mkdir /var/lib/lotus
|
|
|
|
RUN mkdir /var/lib/lotus-miner
|
|
|
|
RUN mkdir /var/lib/lotus-worker
|
|
|
|
RUN mkdir /var/lib/lotus-wallet
|
|
|
|
RUN chown fc: /var/tmp/filecoin-proof-parameters
|
|
|
|
RUN chown fc: /var/lib/lotus
|
|
|
|
RUN chown fc: /var/lib/lotus-miner
|
|
|
|
RUN chown fc: /var/lib/lotus-worker
|
|
|
|
RUN chown fc: /var/lib/lotus-wallet
|
|
|
|
|
|
|
|
|
|
|
|
VOLUME /var/tmp/filecoin-proof-parameters
|
|
|
|
VOLUME /var/lib/lotus
|
|
|
|
VOLUME /var/lib/lotus-miner
|
|
|
|
VOLUME /var/lib/lotus-worker
|
|
|
|
VOLUME /var/lib/lotus-wallet
|
|
|
|
|
|
|
|
EXPOSE 1234
|
|
|
|
EXPOSE 2345
|
|
|
|
EXPOSE 3456
|
|
|
|
EXPOSE 1777
|