mirror of
https://github.com/eth-act/ere.git
synced 2026-02-19 11:54:42 -05:00
Fix invalid --chmod Dockerfile syntax in docker/sp1 (#127)
This commit is contained in:
@@ -31,7 +31,7 @@ ENV NVCC_APPEND_FLAGS=${NVCC_APPEND_FLAGS}
|
||||
ENV PATH=/usr/local/cuda/bin:$PATH
|
||||
|
||||
# Copy and run the Risc0 SDK installer script
|
||||
COPY --chmod=+x scripts/sdk_installers/install_risc0_sdk.sh /tmp/install_risc0_sdk.sh
|
||||
COPY --chmod=755 scripts/sdk_installers/install_risc0_sdk.sh /tmp/install_risc0_sdk.sh
|
||||
|
||||
# The install_risc0_sdk.sh script will respect these ENV variables.
|
||||
ENV RISC0_VERSION="3.0.3" \
|
||||
|
||||
@@ -5,7 +5,7 @@ FROM ${BASE_IMAGE_TAG}
|
||||
ARG USERNAME=ere_user
|
||||
|
||||
# Copy the SP1 SDK installer script
|
||||
COPY --chmod=+x scripts/sdk_installers/install_sp1_sdk.sh /tmp/install_sp1_sdk.sh
|
||||
COPY --chmod=755 scripts/sdk_installers/install_sp1_sdk.sh /tmp/install_sp1_sdk.sh
|
||||
|
||||
# Define where SP1 SDK will be installed within the image.
|
||||
# The install_sp1_sdk.sh script will respect these ENV variables.
|
||||
|
||||
@@ -17,7 +17,7 @@ ENV PATH=/usr/local/go/bin:$PATH
|
||||
RUN rustup default nightly
|
||||
|
||||
# Copy the Ziren SDK installer script
|
||||
COPY --chmod=+x scripts/sdk_installers/install_ziren_sdk.sh /tmp/install_ziren_sdk.sh
|
||||
COPY --chmod=755 scripts/sdk_installers/install_ziren_sdk.sh /tmp/install_ziren_sdk.sh
|
||||
|
||||
# The install_ziren_sdk.sh script will respect these ENV variables.
|
||||
ENV ZIREM_VERSION="1.1.4"
|
||||
|
||||
Reference in New Issue
Block a user