From c01c1a68ab982fe9342a5691910583726c7c666d Mon Sep 17 00:00:00 2001 From: Christian Pointner Date: Wed, 8 Feb 2023 14:07:47 +0100 Subject: ubuntu: add focal and jammy, remove bionice; move app images to bullseye diff --git a/build-app-images.sh b/build-app-images.sh index 56ca0a5..c6ee3ce 100755 --- a/build-app-images.sh +++ b/build-app-images.sh @@ -23,5 +23,5 @@ function run_build { echo "" } -run_build "ffmpeg:bionic" "ffmpeg/bionic" -run_build "gstreamer:bionic" "gstreamer/bionic" +run_build "ffmpeg:bullseye" "ffmpeg/bullseye" +run_build "gstreamer:bullseye" "gstreamer/bullseye" diff --git a/build-os-images.sh b/build-os-images.sh index 12c6b72..fde314b 100755 --- a/build-os-images.sh +++ b/build-os-images.sh @@ -39,6 +39,6 @@ for codename in buster bullseye; do done ## ubuntu -for codename in bionic; do +for codename in focal jammy; do run_build "ubuntu:$codename" "ubuntu/$codename" done diff --git a/ffmpeg/bionic/Dockerfile b/ffmpeg/bionic/Dockerfile deleted file mode 100644 index aa04dda..0000000 --- a/ffmpeg/bionic/Dockerfile +++ /dev/null @@ -1,7 +0,0 @@ -FROM docker.helsinki.at/ubuntu:bionic -MAINTAINER Christian Pointner - -RUN set -x \ - && apt-get update -q \ - && apt-get install -y -q ffmpeg \ - && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* diff --git a/ffmpeg/bullseye/Dockerfile b/ffmpeg/bullseye/Dockerfile new file mode 100644 index 0000000..80b7943 --- /dev/null +++ b/ffmpeg/bullseye/Dockerfile @@ -0,0 +1,7 @@ +FROM docker.helsinki.at/ubuntu:bullseye +MAINTAINER Christian Pointner + +RUN set -x \ + && apt-get update -q \ + && apt-get install -y -q ffmpeg \ + && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* diff --git a/gstreamer/bionic/Dockerfile b/gstreamer/bionic/Dockerfile deleted file mode 100644 index 1bd627c..0000000 --- a/gstreamer/bionic/Dockerfile +++ /dev/null @@ -1,7 +0,0 @@ -FROM docker.helsinki.at/ubuntu:bionic -MAINTAINER Christian Pointner - -RUN set -x \ - && apt-get update -q \ - && apt-get install -y -q gstreamer1.0-tools gstreamer1.0-plugins-good gstreamer1.0-plugins-bad gstreamer1.0-plugins-ugly gstreamer1.0-alsa \ - && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* diff --git a/gstreamer/bullseye/Dockerfile b/gstreamer/bullseye/Dockerfile new file mode 100644 index 0000000..795084b --- /dev/null +++ b/gstreamer/bullseye/Dockerfile @@ -0,0 +1,7 @@ +FROM docker.helsinki.at/ubuntu:bullseye +MAINTAINER Christian Pointner + +RUN set -x \ + && apt-get update -q \ + && apt-get install -y -q gstreamer1.0-tools gstreamer1.0-plugins-good gstreamer1.0-plugins-bad gstreamer1.0-plugins-ugly gstreamer1.0-alsa \ + && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* diff --git a/ubuntu/bionic/Dockerfile b/ubuntu/bionic/Dockerfile deleted file mode 100644 index 2877310..0000000 --- a/ubuntu/bionic/Dockerfile +++ /dev/null @@ -1,31 +0,0 @@ -FROM ubuntu:bionic -MAINTAINER Christian Pointner - -LABEL at.helsinki.docker.os.distro=ubuntu at.helsinki.docker.os.release=bionic - -RUN set -x \ - && echo 'deb http://apt.helsinki.at/ubuntu bionic main universe' > /etc/apt/sources.list \ - && echo 'deb http://apt.helsinki.at/ubuntu bionic-updates main universe' >> /etc/apt/sources.list \ - && echo 'deb http://apt.helsinki.at/ubuntu bionic-security main universe' >>/etc/apt/sources.list \ - && echo 'APT::Install-Recommends "false";' >/etc/apt/apt.conf.d/02-norecommends \ - && apt-get update -q \ - && apt-get install -y -q tzdata locales \ - && apt-get upgrade -y -q \ - && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* - -COPY common/helsinki_repo.gpg /etc/apt/trusted.gpg.d/helsinki.gpg -RUN set -x \ - && echo 'deb http://build.helsinki.at bionic main' >>/etc/apt/sources.list.d/helsinki.list \ - && apt-get update -q \ - && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* - -ENV TZ="Europe/Vienna" -RUN set -x \ - && echo "de_AT.UTF-8 UTF-8\nen_US.UTF-8 UTF-8" > /etc/locale.gen \ - && locale-gen \ - && ln -snf /usr/share/zoneinfo/${TZ} /etc/localtime \ - && echo ${TZ} > /etc/timezone - -COPY common/bin/tini /usr/local/bin/ - -ENTRYPOINT ["tini", "--"] diff --git a/ubuntu/focal/Dockerfile b/ubuntu/focal/Dockerfile new file mode 100644 index 0000000..8ef4e1c --- /dev/null +++ b/ubuntu/focal/Dockerfile @@ -0,0 +1,31 @@ +FROM ubuntu:focal +MAINTAINER Christian Pointner + +LABEL at.helsinki.docker.os.distro=ubuntu at.helsinki.docker.os.release=focal + +RUN set -x \ + && echo 'deb http://apt.helsinki.at/ubuntu focal main universe' > /etc/apt/sources.list \ + && echo 'deb http://apt.helsinki.at/ubuntu focal-updates main universe' >> /etc/apt/sources.list \ + && echo 'deb http://apt.helsinki.at/ubuntu focal-security main universe' >>/etc/apt/sources.list \ + && echo 'APT::Install-Recommends "false";' >/etc/apt/apt.conf.d/02-norecommends \ + && apt-get update -q \ + && apt-get install -y -q tzdata locales \ + && apt-get upgrade -y -q \ + && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* + +COPY common/helsinki_repo.gpg /etc/apt/trusted.gpg.d/helsinki.gpg +RUN set -x \ + && echo 'deb http://build.helsinki.at focal main' >>/etc/apt/sources.list.d/helsinki.list \ + && apt-get update -q \ + && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* + +ENV TZ="Europe/Vienna" +RUN set -x \ + && echo "de_AT.UTF-8 UTF-8\nen_US.UTF-8 UTF-8" > /etc/locale.gen \ + && locale-gen \ + && ln -snf /usr/share/zoneinfo/${TZ} /etc/localtime \ + && echo ${TZ} > /etc/timezone + +COPY common/bin/tini /usr/local/bin/ + +ENTRYPOINT ["tini", "--"] diff --git a/ubuntu/jammy/Dockerfile b/ubuntu/jammy/Dockerfile new file mode 100644 index 0000000..72de593 --- /dev/null +++ b/ubuntu/jammy/Dockerfile @@ -0,0 +1,31 @@ +FROM ubuntu:jammy +MAINTAINER Christian Pointner + +LABEL at.helsinki.docker.os.distro=ubuntu at.helsinki.docker.os.release=jammy + +RUN set -x \ + && echo 'deb http://apt.helsinki.at/ubuntu jammy main universe' > /etc/apt/sources.list \ + && echo 'deb http://apt.helsinki.at/ubuntu jammy-updates main universe' >> /etc/apt/sources.list \ + && echo 'deb http://apt.helsinki.at/ubuntu jammy-security main universe' >>/etc/apt/sources.list \ + && echo 'APT::Install-Recommends "false";' >/etc/apt/apt.conf.d/02-norecommends \ + && apt-get update -q \ + && apt-get install -y -q tzdata locales \ + && apt-get upgrade -y -q \ + && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* + +COPY common/helsinki_repo.gpg /etc/apt/trusted.gpg.d/helsinki.gpg +RUN set -x \ + && echo 'deb http://build.helsinki.at jammy main' >>/etc/apt/sources.list.d/helsinki.list \ + && apt-get update -q \ + && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* + +ENV TZ="Europe/Vienna" +RUN set -x \ + && echo "de_AT.UTF-8 UTF-8\nen_US.UTF-8 UTF-8" > /etc/locale.gen \ + && locale-gen \ + && ln -snf /usr/share/zoneinfo/${TZ} /etc/localtime \ + && echo ${TZ} > /etc/timezone + +COPY common/bin/tini /usr/local/bin/ + +ENTRYPOINT ["tini", "--"] -- cgit v0.10.2