Skip to content

Commit

Permalink
feat: add ca-cert package and debug packages to docker image
Browse files Browse the repository at this point in the history
  • Loading branch information
matthew-hagemann committed Jan 14, 2025
1 parent ddde201 commit 7e8fc22
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion docker/prod/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,15 @@
FROM ubuntu:latest

RUN DEBIAN_FRONTEND=noninteractive apt-get update && apt-get upgrade -y && rm -rf /var/lib/apt/lists/*
RUN apt-get update && apt-get install -y \
ca-certificates \
libssl-dev \
jq \
curl \
&& rm -rf /var/lib/apt/lists/*

WORKDIR /app
COPY target/release/ratings /app/ratings

EXPOSE 443
ENTRYPOINT ["/app/ratings"]

0 comments on commit 7e8fc22

Please sign in to comment.