From 2058bd650374f2c50e188d90f8de9a461e93b105 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=A1bor=20Cs=C3=A1rdi?= Date: Sat, 17 Jun 2023 15:29:33 +0200 Subject: [PATCH] Fix Dockerfile for Debian-12 --- builder/Dockerfile.debian-12 | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/builder/Dockerfile.debian-12 b/builder/Dockerfile.debian-12 index 62f95a2..47cba63 100644 --- a/builder/Dockerfile.debian-12 +++ b/builder/Dockerfile.debian-12 @@ -1,16 +1,16 @@ -FROM debian:bullseye +FROM debian:bookworm ENV OS_IDENTIFIER debian-12 RUN set -x \ && export DEBIAN_FRONTEND=noninteractive \ - && echo 'deb-src http://deb.debian.org/debian bullseye main' >> /etc/apt/sources.list \ + && echo 'deb-src http://deb.debian.org/debian bookworm main' >> /etc/apt/sources.list \ && apt-get update \ && apt-get install -y curl gcc libcurl4-openssl-dev libicu-dev \ - libopenblas-base libpcre2-dev make python3-pip wget \ + libopenblas0 libpcre2-dev make pipx wget \ && apt-get build-dep -y r-base -RUN pip3 install awscli +RUN pipx install awscli && pipx ensurepath RUN chmod 0777 /opt