From 0063e64aaa8e04018fd4121d6b70d73b7f4aee80 Mon Sep 17 00:00:00 2001 From: Carine Dengler Date: Tue, 5 Mar 2024 17:56:11 +0100 Subject: [PATCH] fix: fix missing build stage --- Dockerfiles/Dockerfile.dela | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfiles/Dockerfile.dela b/Dockerfiles/Dockerfile.dela index f7e4af90..2f93c5ff 100644 --- a/Dockerfiles/Dockerfile.dela +++ b/Dockerfiles/Dockerfile.dela @@ -11,7 +11,7 @@ RUN --mount=type=cache,target="/root/.cache/go-build" go install # make sure we're using the same head as d-voting RUN --mount=type=cache,target="/root/.cache/go-build" cd $( go list -f '{{.Dir}}' go.dedis.ch/dela )/cli/crypto && go install -FROM golang:1.20.6-bookworm +FROM golang:1.20.6-bookworm AS build WORKDIR /usr/local/bin COPY --from=base /go/bin/crypto . COPY --from=base /go/bin/dvoting .