Skip to content

Commit

Permalink
migrate Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
phbnf committed Nov 18, 2024
1 parent 8417b79 commit e4b66c0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cmd/conformance/aws/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ RUN go mod download
COPY . .

# Build the application
RUN go build -o bin/conformance-gcp ./cmd/conformance/gcp
RUN go build -o bin/conformance-aws ./cmd/conformance/aws

# Build release image
FROM alpine:3.20.2@sha256:0a4eaa0eecf5f8c050e5bba433f58c052be7587ee8af3e8b3910ef9ab5fbe9f5

COPY --from=builder /build/bin/conformance-gcp /bin/conformance-gcp
ENTRYPOINT ["/bin/conformance-gcp"]
COPY --from=builder /build/bin/conformance-aws /bin/conformance-aws
ENTRYPOINT ["/bin/conformance-aws"]

0 comments on commit e4b66c0

Please sign in to comment.