Skip to content

Commit

Permalink
ci: update debian stable in container image
Browse files Browse the repository at this point in the history
Matches the Debian 11 -> 12 transition in upstream Penumbra,
performed in penumbra-zone/penumbra#2908
  • Loading branch information
conorsch committed Sep 21, 2023
1 parent 432bc26 commit 8cb5495
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ ARG PENUMBRA_VERSION=main
FROM ghcr.io/penumbra-zone/penumbra:${PENUMBRA_VERSION} AS penumbra

# Build the galileo binary
FROM docker.io/rust:1-bullseye AS builder
FROM docker.io/rust:1-bookworm AS builder
ARG PENUMBRA_VERSION=main
RUN apt-get update && apt-get install -y \
libssl-dev git-lfs clang
Expand All @@ -16,7 +16,7 @@ WORKDIR /usr/src/galileo
RUN cargo build --release

# Runtime container, copying in built artifacts
FROM docker.io/debian:bullseye-slim
FROM docker.io/debian:bookworm-slim
RUN apt-get update && apt-get install -y ca-certificates
RUN groupadd --gid 1000 penumbra \
&& useradd -m -d /home/penumbra -g 1000 -u 1000 penumbra
Expand Down

0 comments on commit 8cb5495

Please sign in to comment.