Skip to content

Commit

Permalink
Fix Dockerfile for Debian-12
Browse files Browse the repository at this point in the history
  • Loading branch information
gaborcsardi committed Jun 17, 2023
1 parent 4fdb5a8 commit 2058bd6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions builder/Dockerfile.debian-12
Original file line number Diff line number Diff line change
@@ -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

Expand Down

0 comments on commit 2058bd6

Please sign in to comment.