Fix Dockerfile for Debian-12

This commit is contained in:
Gábor Csárdi 2023-06-17 15:29:33 +02:00
commit 2058bd6503

View file

@ -1,16 +1,16 @@
FROM debian:bullseye FROM debian:bookworm
ENV OS_IDENTIFIER debian-12 ENV OS_IDENTIFIER debian-12
RUN set -x \ RUN set -x \
&& export DEBIAN_FRONTEND=noninteractive \ && 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 update \
&& apt-get install -y curl gcc libcurl4-openssl-dev libicu-dev \ && 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 && apt-get build-dep -y r-base
RUN pip3 install awscli RUN pipx install awscli && pipx ensurepath
RUN chmod 0777 /opt RUN chmod 0777 /opt