From 40bc8a87f71cd05fdc39cb68896e45bf3933c1c7 Mon Sep 17 00:00:00 2001 From: Thomas Schneider <thomas@fsmpi.rwth-aachen.de> Date: Tue, 6 Jun 2023 15:01:12 +0200 Subject: [PATCH] Remove stretch, make bullseye default everywhere --- .gitlab-ci.yml | 29 ----------------------------- fsmpi-base/Dockerfile | 2 +- fsmpi-base/stretch.list | 3 --- fsmpi-packages/Dockerfile | 2 +- fsmpi-python/Dockerfile | 2 +- fsmpi-website/Dockerfile | 2 +- 6 files changed, 4 insertions(+), 36 deletions(-) delete mode 100644 fsmpi-base/stretch.list diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index b0806ba..aeec961 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -15,11 +15,6 @@ before_script: script: - /kaniko/executor --context $CI_PROJECT_DIR/$IMAGE_NAME --dockerfile $IMAGE_NAME/Dockerfile --build-arg DEBIAN_RELEASE=$DEBIAN_RELEASE --destination $CI_REGISTRY_IMAGE/$IMAGE_NAME:$DEBIAN_RELEASE-$CI_COMMIT_SHA --destination $CI_REGISTRY_IMAGE/$IMAGE_NAME:$DEBIAN_RELEASE -.build-stretch: - extends: .build - variables: - DEBIAN_RELEASE: stretch - .build-buster: extends: .build variables: @@ -30,12 +25,6 @@ before_script: variables: DEBIAN_RELEASE: bullseye -base-stretch: - extends: .build-stretch - stage: base - variables: - IMAGE_NAME: fsmpi-base - base-buster: extends: .build-buster stage: base @@ -60,12 +49,6 @@ latex-bullseye: variables: IMAGE_NAME: fsmpi-latex -packages-stretch: - extends: .build-stretch - stage: first - variables: - IMAGE_NAME: fsmpi-packages - packages-buster: extends: .build-buster stage: first @@ -78,12 +61,6 @@ packages-bullseye: variables: IMAGE_NAME: fsmpi-packages -python-stretch: - extends: .build-stretch - stage: first - variables: - IMAGE_NAME: fsmpi-python - python-buster: extends: .build-buster stage: first @@ -108,12 +85,6 @@ ansible-bullseye: variables: IMAGE_NAME: fsmpi-ansible -website-stretch: - extends: .build-stretch - stage: second - variables: - IMAGE_NAME: fsmpi-website - website-buster: extends: .build-buster stage: second diff --git a/fsmpi-base/Dockerfile b/fsmpi-base/Dockerfile index bd26835..1c4f4f6 100644 --- a/fsmpi-base/Dockerfile +++ b/fsmpi-base/Dockerfile @@ -1,4 +1,4 @@ -ARG DEBIAN_RELEASE=stretch +ARG DEBIAN_RELEASE=bullseye FROM debian:${DEBIAN_RELEASE} ARG DEBIAN_RELEASE ENV LANG C.UTF-8 diff --git a/fsmpi-base/stretch.list b/fsmpi-base/stretch.list deleted file mode 100644 index a7c52cb..0000000 --- a/fsmpi-base/stretch.list +++ /dev/null @@ -1,3 +0,0 @@ -deb http://ftp.halifax.rwth-aachen.de/debian stretch main -deb http://security.debian.org/debian-security stretch/updates main -deb http://ftp.halifax.rwth-aachen.de/debian stretch-updates main diff --git a/fsmpi-packages/Dockerfile b/fsmpi-packages/Dockerfile index 964b9e9..d8da4e7 100644 --- a/fsmpi-packages/Dockerfile +++ b/fsmpi-packages/Dockerfile @@ -1,3 +1,3 @@ -ARG DEBIAN_RELEASE=stretch +ARG DEBIAN_RELEASE=bullseye FROM registry.git.fsmpi.rwth-aachen.de/infra/ci-containers/fsmpi-base:${DEBIAN_RELEASE} RUN apt-get update && apt-get install -y build-essential dpkg-dev quilt devscripts git curl && rm -rf /var/lib/apt/lists/* diff --git a/fsmpi-python/Dockerfile b/fsmpi-python/Dockerfile index 04e0fd3..fd75188 100644 --- a/fsmpi-python/Dockerfile +++ b/fsmpi-python/Dockerfile @@ -1,3 +1,3 @@ -ARG DEBIAN_RELEASE=stretch +ARG DEBIAN_RELEASE=bullseye FROM registry.git.fsmpi.rwth-aachen.de/infra/ci-containers/fsmpi-base:${DEBIAN_RELEASE} RUN apt-get update && apt-get install -y python3 python3-pip python3-venv flake8 curl && rm -rf /var/lib/apt/lists/* diff --git a/fsmpi-website/Dockerfile b/fsmpi-website/Dockerfile index c3fb015..b17178c 100644 --- a/fsmpi-website/Dockerfile +++ b/fsmpi-website/Dockerfile @@ -1,3 +1,3 @@ -ARG DEBIAN_RELEASE=stretch +ARG DEBIAN_RELEASE=bullseye FROM registry.git.fsmpi.rwth-aachen.de/infra/ci-containers/fsmpi-python:${DEBIAN_RELEASE} RUN apt-get update && apt-get install -y openssh-client rsync default-jre git && rm -rf /var/lib/apt/lists/* -- GitLab