diff --git a/index/server/Dockerfile b/index/server/Dockerfile index 0a9dca5d..27eb0392 100644 --- a/index/server/Dockerfile +++ b/index/server/Dockerfile @@ -15,6 +15,7 @@ # Index Server build stage FROM golang:1.21-alpine@sha256:3f8e3ad3e7c128d29ac3004ac8314967c5ddbfa5bfa7caa59b0de493fc01686a AS index-builder + WORKDIR /tools COPY . . RUN CGO_ENABLED=0 go build -mod=vendor -o index-server main.go diff --git a/oci-registry/build-multi-arch.sh b/oci-registry/build-multi-arch.sh index f8857f4e..ade1e7b0 100644 --- a/oci-registry/build-multi-arch.sh +++ b/oci-registry/build-multi-arch.sh @@ -76,6 +76,6 @@ else # Push and delete local manifest docker manifest push "$DEFAULT_MANIFEST" - docker manifest rm "$$DEFAULT_MANIFEST" + docker manifest rm "$DEFAULT_MANIFEST" fi \ No newline at end of file