Switch base image to Debian 12 (bookworm)

This commit is contained in:
Paul van Tilburg 2023-07-30 21:26:14 +02:00
parent 33db9794a3
commit 35368240a7
Signed by: paul
GPG Key ID: C6DE073EDA9EEC4D
3 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
FROM docker.io/rust:bullseye
FROM docker.io/rust:bookworm
RUN apt-get update && apt-get upgrade -y
RUN apt-get install -y g++-arm-linux-gnueabihf libc6-dev-armhf-cross

View File

@ -1,4 +1,4 @@
FROM docker.io/rust:bullseye
FROM docker.io/rust:bookworm
RUN apt-get update && apt-get upgrade -y
RUN apt-get install -y g++-aarch64-linux-gnu libc6-dev-arm64-cross

View File

@ -1,4 +1,4 @@
FROM docker.io/rust:bullseye
FROM docker.io/rust:bookworm
RUN apt-get update && apt-get upgrade -y
# Uncomment if you need to add more build dependencies to the image: