Skip to content

Commit

Permalink
fixed dockerfile error
Browse files Browse the repository at this point in the history
  • Loading branch information
bruhhgnik committed Oct 2, 2024
1 parent 5134476 commit 97105c2
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Dockerfile.fedora
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ RUN rm -rf /tmp/bazel-disk-cache
# Stage 2: Target Image
FROM fedora:latest AS target

COPY --from=build /app/bazel-bin/src/starkware/main/cpu/cpu_air_prover /usr/local/bin/
COPY --from=build /app/bazel-bin/src/starkware/main/cpu/cpu_air_verifier /usr/local/bin/
COPY --from=build /app/build/bazelbin/src/starkware/main/cpu/cpu_air_prover /usr/local/bin/
COPY --from=build /app/build/bazelbin/src/starkware/main/cpu/cpu_air_verifier /usr/local/bin/

# Install necessary runtime dependencies
RUN dnf update -y && dnf install -y \
Expand All @@ -41,3 +41,5 @@ RUN dnf update -y && dnf install -y \
&& rm -rf /var/cache/dnf

ENTRYPOINT ["/bin/bash"]

#comment

0 comments on commit 97105c2

Please sign in to comment.