Skip to content
Open
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 rust/pact_verifier_cli/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ARG ARCH=
FROM --platform=$BUILDPLATFORM rust:1-alpine3.21 AS builder
FROM rust:1-alpine3.21 AS builder
ARG BIN_ARCH=x86_64
ARG VERSION=1.1.1

Expand All @@ -8,7 +8,7 @@ RUN gunzip pact-verifier.gz
RUN chmod +x pact-verifier

# Now, we need to build our _real_ Docker container, copying in the executable.
FROM --platform=$BUILDPLATFORM alpine:3.21
FROM alpine:3.21
RUN apk --no-cache add ca-certificates
COPY --from=builder \
/pact-verifier \
Expand Down
Loading