Skip to content

Commit

Permalink
fix: add ssl certs to runner image (#172)
Browse files Browse the repository at this point in the history
* fix: add ssl certs to runner image

* fix: install ca-certs
  • Loading branch information
smrz2001 authored May 12, 2024
1 parent e44cfee commit 8729912
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,12 @@ FROM debian:bookworm-slim as exec

RUN apt-get update && apt-get install -y \
openssl \
ca-certificates \
&& rm -rf /var/lib/apt/lists/*

FROM exec as runner

COPY --from=builder /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ca-certificates.crt
COPY --from=builder /home/builder/keramik/keramik-runner /usr/bin

ENTRYPOINT ["/usr/bin/keramik-runner"]
Expand Down

0 comments on commit 8729912

Please sign in to comment.