Skip to content

Commit

Permalink
Run apt-get upgrade in Docker (#1327)
Browse files Browse the repository at this point in the history
This should get us uptodate system packages / dependencies.
  • Loading branch information
Swatinem authored Oct 23, 2023
1 parent 55165af commit 25c5b2f
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 @@ -17,6 +17,7 @@ RUN cargo chef prepare --recipe-path recipe.json
FROM symbolicator-chef AS symbolicator-build

RUN apt-get update \
&& apt-get upgrade -y \
&& apt-get install -y --no-install-recommends build-essential ca-certificates curl libssl-dev pkg-config git zip \
# below required for sentry-native
cmake clang libcurl4-openssl-dev \
Expand Down Expand Up @@ -50,6 +51,7 @@ RUN sentry-cli --version \

FROM debian:bookworm-slim
RUN apt-get update \
&& apt-get upgrade -y \
&& apt-get install -y --no-install-recommends openssl ca-certificates gosu curl cabextract \
&& rm -rf /var/lib/apt/lists/*

Expand Down

0 comments on commit 25c5b2f

Please sign in to comment.