We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f440424 commit 3c017b2Copy full SHA for 3c017b2
1 file changed
docker/batcher.Dockerfile
@@ -2,10 +2,10 @@ FROM ghcr.io/yetanotherco/aligned_layer/aligned_base:latest AS base
2
3
COPY go.mod .
4
COPY go.sum .
5
-COPY crates/batcher/verifiers_ffi/verifier.go /aligned_layer/crates/batcher/verifiers_ffi/verifier.go
+COPY crates/batcher/go_verifiers_lib/verifier.go /aligned_layer/crates/batcher/go_verifiers_lib/verifier.go
6
7
RUN apt update -y && apt install -y gcc
8
-RUN go build -buildmode=c-archive -o libverifier.a /aligned_layer/crates/batcher/verifiers_ffi/verifier.go
+RUN go build -buildmode=c-archive -o libverifier.a /aligned_layer/crates/batcher/go_verifiers_lib/verifier.go
9
10
FROM lukemathwalker/cargo-chef:latest-rust-1 AS chef
11
0 commit comments