Skip to content

Commit

Permalink
Merge pull request #8 from persona-id/alexc-tls
Browse files Browse the repository at this point in the history
Build image based on Alpine so we can install CA certificates
  • Loading branch information
drcapulet authored Mar 15, 2024
2 parents 5c40182 + f2de970 commit dd04b32
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
FROM scratch
COPY gcp-artifact-registry-docker-proxy /
ENTRYPOINT ["/gcp-artifact-registry-docker-proxy"]
FROM alpine:3.19.1

RUN apk --no-cache add ca-certificates

COPY gcp-artifact-registry-docker-proxy /usr/local/bin

ENTRYPOINT ["/usr/local/bin/gcp-artifact-registry-docker-proxy"]

0 comments on commit dd04b32

Please sign in to comment.