mirror of
https://github.com/eth-act/ere.git
synced 2026-02-19 11:54:42 -05:00
82 lines
2.7 KiB
Docker
82 lines
2.7 KiB
Docker
ARG BASE_IMAGE_TAG=ere-base:latest
|
|
|
|
FROM ${BASE_IMAGE_TAG}
|
|
|
|
# The ere-base image provides Rust, Cargo, and common tools.
|
|
# ZisK requires Ubuntu 22.04 or higher (ere-base uses 24.04 by default).
|
|
# We operate as root for SDK and dependency installation.
|
|
|
|
# Install ZisK system dependencies (for Ubuntu)
|
|
# Taken from https://0xpolygonhermez.github.io/zisk/getting_started/installation.html
|
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
xz-utils \
|
|
# jq is in ere-base
|
|
# curl is in ere-base
|
|
# build-essential is in ere-base
|
|
qemu-system \
|
|
libomp-dev \
|
|
libgmp-dev \
|
|
nlohmann-json3-dev \
|
|
protobuf-compiler \
|
|
uuid-dev \
|
|
libgrpc++-dev \
|
|
libsecp256k1-dev \
|
|
libsodium-dev \
|
|
libpqxx-dev \
|
|
nasm \
|
|
libopenmpi-dev \
|
|
openmpi-bin \
|
|
openmpi-common \
|
|
libclang-dev \
|
|
clang && \
|
|
apt-get clean && rm -rf /var/lib/apt/lists/*
|
|
|
|
# If current environment is in CI or not.
|
|
ARG CI
|
|
|
|
# Install CUDA Toolkit 12.9
|
|
#
|
|
# If argument `CI` is set, we skip the installation.
|
|
RUN [ -n "$CI" ] || \
|
|
(wget https://developer.download.nvidia.com/compute/cuda/repos/$(. /etc/os-release && echo "${ID}${VERSION_ID}" | tr -d '.')/$(uname -i)/cuda-keyring_1.1-1_all.deb && \
|
|
dpkg -i cuda-keyring_1.1-1_all.deb && \
|
|
rm cuda-keyring_1.1-1_all.deb && \
|
|
apt update && \
|
|
apt install -y cuda-toolkit-12-9 && \
|
|
apt-get clean && rm -rf /var/lib/apt/lists/*)
|
|
|
|
# Add nvcc to path
|
|
ENV PATH=/usr/local/cuda/bin:$PATH
|
|
|
|
# Default to build for RTX 50 series
|
|
ARG CUDA_ARCH=120
|
|
ENV CUDA_ARCH=${CUDA_ARCH}
|
|
|
|
# Copy the ZisK SDK installer script from the workspace context
|
|
COPY scripts/sdk_installers/install_zisk_sdk.sh /tmp/install_zisk_sdk.sh
|
|
RUN chmod +x /tmp/install_zisk_sdk.sh
|
|
|
|
# Run the ZisK SDK installation script using ziskup.
|
|
# This script installs the 'zisk' Rust toolchain and `cargo-zisk`
|
|
#
|
|
# If argument `CI` is set, we only install verifying key, this is used by GitHub
|
|
# CI runner which only has small disk space (proving key requires ~27 GB).
|
|
RUN if [ -n "$CI" ]; then export SETUP_KEY=verify; fi && \
|
|
/tmp/install_zisk_sdk.sh && \
|
|
rm /tmp/install_zisk_sdk.sh && \
|
|
# Remove the merkle tree of proving key to reduce docker image size (~20 GB).
|
|
# Re-generating takes only ~30 seconds.
|
|
find "/root/.zisk/provingKey" -name "*.consttree" -type f -delete
|
|
|
|
# The 'zisk' Rust toolchain is now installed.
|
|
# cargo-zisk is installed in /root/.zisk/bin.
|
|
# The ziskup script adds /root/.zisk/bin to PATH for its session.
|
|
# For the image environment, we need to ensure /root/.zisk/bin is persistently in PATH.
|
|
ENV ZISK_BIN_DIR="/root/.zisk/bin"
|
|
ENV PATH="${PATH}:${ZISK_BIN_DIR}"
|
|
|
|
# Verify cargo-zisk is accessible
|
|
RUN echo "Verifying ZisK installation in Dockerfile ..." && cargo-zisk --version
|
|
|
|
CMD ["/bin/bash"]
|