Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

upgrade docker base images to Debian 12 (Bookworm) #2975

Merged
merged 2 commits into from
May 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
- Upgrade docker base images to Debian 12 (Bookworm) ([#2975](https://github.com/anoma/namada/pull/2975)).
2 changes: 1 addition & 1 deletion docker/namada-wasm/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# This docker is used for deterministic wasm builds

# The version should be matching the version set in wasm/rust-toolchain.toml
FROM rust:1.76.0-bullseye
FROM rust:1.76.0-bookworm

WORKDIR /__w/namada/namada

Expand Down
6 changes: 3 additions & 3 deletions docker/namada/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM lukemathwalker/cargo-chef:latest-rust-1.76.0-bullseye AS chef
FROM lukemathwalker/cargo-chef:latest-rust-1.76.0-bookworm AS chef
WORKDIR /app

FROM chef AS planner
Expand All @@ -10,7 +10,7 @@ WORKDIR /app

RUN apt-get update && apt-get install -y \
build-essential \
clang-tools-11 \
clang-tools-14 \
git \
libssl-dev \
pkg-config \
Expand All @@ -29,7 +29,7 @@ WORKDIR /app

RUN git clone -b v0.37.2 --single-branch https://github.com/cometbft/cometbft.git && cd cometbft && make build

FROM debian:bullseye-slim AS runtime
FROM debian:bookworm-slim AS runtime
ENV NAMADA_LOG_COLOR=false

RUN apt-get update && apt-get install libcurl4-openssl-dev libudev-dev -y && apt-get clean
Expand Down
Loading