Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM --platform=${BUILDPLATFORM} rust:slim-bookworm AS chef
FROM --platform=${BUILDPLATFORM} rust:1-slim-bookworm AS chef

ARG CIRCUIT_ARTIFACTS_URL_BASE=https://sp1-circuits.s3-us-east-2.amazonaws.com
ARG CIRCUIT_TYPE=plonk
Expand Down Expand Up @@ -54,7 +54,7 @@ COPY --link Cargo.lock Cargo.lock
RUN cargo build --release --bin aggkit-prover


FROM --platform=${BUILDPLATFORM} debian:bookworm-slim
FROM --platform=${BUILDPLATFORM} debian:12-slim

RUN apt-get update && apt-get install -y ca-certificates
COPY --from=builder /app/target/release/aggkit-prover /usr/local/bin/
Expand Down
Loading