We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3c71559 commit c20cc57Copy full SHA for c20cc57
1 file changed
docker/proof-aggregator.Dockerfile
@@ -1,9 +1,5 @@
1
FROM ghcr.io/yetanotherco/aligned_layer/aligned_base:latest AS base
2
3
-RUN apt update -y && apt install -y gcc docker.io && \
4
- groupadd docker || true && \
5
- usermod -aG docker root
6
-
7
# Install SP1 toolchain
8
RUN curl -L https://sp1up.succinct.xyz | bash -s -- -y
9
ENV PATH="/root/.sp1/bin:${PATH}"
@@ -20,7 +16,7 @@ WORKDIR /aligned_layer
20
16
21
17
RUN IN_DOCKER=true cargo build --manifest-path ./aggregation_mode/Cargo.toml --features prove --release --bin proof_aggregator_cpu
22
18
23
-FROM debian:bookworm-slim AS final
19
+FROM docker:24.0.7-dind AS final
24
25
COPY --from=base /aligned_layer/aggregation_mode/target/release/proof_aggregator_cpu /aligned_layer/proof_aggregator_cpu
26
COPY config-files/config-proof-aggregator-docker.yaml /aligned_layer/config-files/
0 commit comments