Skip to content

Commit

Permalink
Add ca-certificates to the Dockerfile.
Browse files Browse the repository at this point in the history
Was failing in prod.
  • Loading branch information
kixelated committed Jan 8, 2024
1 parent f64c2e8 commit b4b389c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ RUN --mount=type=cache,target=/usr/local/cargo/registry \
FROM debian:bookworm-slim

RUN apt-get update && \
apt-get install -y --no-install-recommends curl libssl3 && \
apt-get install -y --no-install-recommends ca-certificates curl libssl3 && \
rm -rf /var/lib/apt/lists/*

LABEL org.opencontainers.image.source=https://github.com/kixelated/moq-rs
Expand All @@ -30,4 +30,4 @@ COPY --from=builder /usr/local/cargo/bin/moq-* /usr/local/bin
COPY deploy/fly-relay.sh .

# Default to moq-relay
CMD ["moq-relay"]
CMD ["moq-relay"]

0 comments on commit b4b389c

Please sign in to comment.