Skip to content

Commit

Permalink
fix: install ca certificate to the base ubuntu (#835)
Browse files Browse the repository at this point in the history
  • Loading branch information
shunsukew authored Oct 16, 2024
1 parent 6c3691a commit fb0ae58
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,8 @@ FROM ubuntu AS runtime
WORKDIR /app
# Install system dependencies for the runtime
# install curl for healthcheck
RUN apt-get -y update; apt-get -y install curl
RUN apt-get -y update; apt-get -y install curl ca-certificates
RUN update-ca-certificates

# Copy rundler over from the build stage
COPY --from=builder /app/target/release/rundler /usr/local/bin
Expand Down

0 comments on commit fb0ae58

Please sign in to comment.