Skip to content

Commit

Permalink
Merge branch 'feat/upgrade-docker-images' (#2975)
Browse files Browse the repository at this point in the history
* feat/upgrade-docker-images:
  add changelog
  upgrade docker images base version to bookworm
  • Loading branch information
brentstone committed May 9, 2024
2 parents 47123bc + e15a3cf commit 7bf6772
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
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

0 comments on commit 7bf6772

Please sign in to comment.