Skip to content

Commit

Permalink
chore: Update Debian base image and install necessary dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
samcm committed Aug 30, 2023
1 parent f2565f6 commit 6946357
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions goreleaser-debian.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
FROM debian:bullseye
RUN apt update && \
apt install -y ca-certificates && \
update-ca-certificates && \
rm -rf /var/lib/apt/lists/*
FROM debian:latest
RUN apt-get update && apt-get -y upgrade && apt-get install -y --no-install-recommends \
libssl-dev \
ca-certificates \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
COPY checkpointz* /checkpointz
ENTRYPOINT ["/checkpointz"]

0 comments on commit 6946357

Please sign in to comment.