Skip to content

Commit

Permalink
ci: embed certs in image for https support
Browse files Browse the repository at this point in the history
  • Loading branch information
tjhop committed Nov 7, 2022
1 parent da15836 commit c28ed6e
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
FROM alpine:latest as certs
RUN apk update && apk add ca-certificates

FROM busybox:latest
COPY --from=certs /etc/ssl/certs /etc/ssl/certs

COPY tagger /usr/bin/tagger
ENTRYPOINT ["/usr/bin/tagger"]
CMD ["--config", "/etc/tagger/tagger.yml"]

0 comments on commit c28ed6e

Please sign in to comment.