Docker: Update Debian dependencies

This commit is contained in:
Michael Mayer 2022-06-20 20:47:04 +02:00
parent a8db361268
commit b291d5c5e1
5 changed files with 13 additions and 7 deletions

View file

@ -42,9 +42,9 @@ RUN echo 'APT::Acquire::Retries "3";' > /etc/apt/apt.conf.d/80retries && \
gpg zip unzip wget curl rsync make nano \ gpg zip unzip wget curl rsync make nano \
jq lsof lshw sqlite3 mariadb-client \ jq lsof lshw sqlite3 mariadb-client \
exiftool darktable rawtherapee libheif-examples librsvg2-bin \ exiftool darktable rawtherapee libheif-examples librsvg2-bin \
ffmpeg ffmpegthumbnailer libavcodec-extra libwebm1 \ ffmpeg ffmpegthumbnailer libavcodec-extra \
libmatroska7 libdvdread8 libebml5 libgav1-0 libatomic1 \ libmatroska7 libdvdread8 libebml5 libgav1-0 libatomic1 \
libx264-163 libx265-199 \ x264 x265 libvpx7 libwebm1 \
&& \ && \
echo 'alias ll="ls -alh"' >> /etc/skel/.bashrc && \ echo 'alias ll="ls -alh"' >> /etc/skel/.bashrc && \
echo 'export PS1="\u@$DOCKER_TAG:\w\$ "' >> /etc/skel/.bashrc && \ echo 'export PS1="\u@$DOCKER_TAG:\w\$ "' >> /etc/skel/.bashrc && \

View file

@ -48,15 +48,15 @@ RUN echo 'APT::Acquire::Retries "3";' > /etc/apt/apt.conf.d/80retries && \
gpg zip unzip wget curl rsync make nano \ gpg zip unzip wget curl rsync make nano \
jq lsof lshw sqlite3 mariadb-client \ jq lsof lshw sqlite3 mariadb-client \
exiftool darktable rawtherapee libheif-examples librsvg2-bin \ exiftool darktable rawtherapee libheif-examples librsvg2-bin \
ffmpeg ffmpegthumbnailer libavcodec-extra libwebm1 \ ffmpeg ffmpegthumbnailer libavcodec-extra \
libmatroska7 libdvdread8 libebml5 libgav1-0 libatomic1 \ libmatroska7 libdvdread8 libebml5 libgav1-0 libatomic1 \
libx264-163 libx265-199 \ x264 x265 libvpx7 libwebm1 \
&& \ && \
apt-get -qq install \ apt-get -qq install \
apt-utils pkg-config software-properties-common \ apt-utils pkg-config software-properties-common \
build-essential gcc g++ git gettext davfs2 chrpath apache2-utils \ build-essential gcc g++ git gettext davfs2 chrpath apache2-utils \
chromium chromium-driver chromium-sandbox firefox-esr \ chromium chromium-driver chromium-sandbox firefox-esr \
libx264-dev libx265-dev libpng-dev libxft-dev \ libx264-dev libx265-dev libvpx-dev libwebm-dev libpng-dev libxft-dev \
libc6-dev libhdf5-serial-dev libzmq3-dev libssl-dev libnss3 \ libc6-dev libhdf5-serial-dev libzmq3-dev libssl-dev libnss3 \
libfreetype6 libfreetype6-dev libfontconfig1 libfontconfig1-dev fonts-roboto \ libfreetype6 libfreetype6-dev libfontconfig1 libfontconfig1-dev fonts-roboto \
&& \ && \

View file

@ -58,6 +58,10 @@ RUN echo 'APT::Acquire::Retries "3";' > /etc/apt/apt.conf.d/80retries && \
ffmpeg \ ffmpeg \
ffmpegthumbnailer \ ffmpegthumbnailer \
libavcodec-extra \ libavcodec-extra \
x264 \
x265 \
libvpx6 \
libwebm1 \
&& \ && \
/scripts/install-mariadb.sh mariadb-client && \ /scripts/install-mariadb.sh mariadb-client && \
/scripts/install-darktable.sh && \ /scripts/install-darktable.sh && \

View file

@ -81,6 +81,8 @@ RUN echo 'APT::Acquire::Retries "3";' > /etc/apt/apt.conf.d/80retries && \
libzmq3-dev \ libzmq3-dev \
libx264-dev \ libx264-dev \
libx265-dev \ libx265-dev \
libvpx-dev \
libwebm-dev \
libnss3 \ libnss3 \
libfreetype6 \ libfreetype6 \
libfreetype6-dev \ libfreetype6-dev \

View file

@ -95,9 +95,9 @@ RUN echo 'APT::Acquire::Retries "3";' > /etc/apt/apt.conf.d/80retries && \
gpg zip unzip wget curl rsync make nano \ gpg zip unzip wget curl rsync make nano \
jq lsof lshw sqlite3 mariadb-client \ jq lsof lshw sqlite3 mariadb-client \
exiftool rawtherapee libheif-examples librsvg2-bin \ exiftool rawtherapee libheif-examples librsvg2-bin \
ffmpeg ffmpegthumbnailer libavcodec-extra libwebm1 \ ffmpeg ffmpegthumbnailer libavcodec-extra \
libmatroska7 libdvdread8 libebml5 libgav1-0 libatomic1 \ libmatroska7 libdvdread8 libebml5 libgav1-0 libatomic1 \
libx264-163 libx265-199 \ x264 x265 libvpx7 libwebm1 \
&& \ && \
echo 'alias ll="ls -alh"' >> /etc/skel/.bashrc && \ echo 'alias ll="ls -alh"' >> /etc/skel/.bashrc && \
echo 'export PS1="\u@$DOCKER_TAG:\w\$ "' >> /etc/skel/.bashrc && \ echo 'export PS1="\u@$DOCKER_TAG:\w\$ "' >> /etc/skel/.bashrc && \