From 1fa5041a7187fc4f44478088626c469adddf340c Mon Sep 17 00:00:00 2001 From: Tim Fritzen <tim.fritzen@rwth-aachen.de> Date: Tue, 27 May 2025 15:54:34 +0200 Subject: [PATCH] Added astro container --- .gitlab-ci.yml | 13 ++++++++++++- fsmpi-astro/Dockerfile | 5 +++++ 2 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 fsmpi-astro/Dockerfile diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 2e37a58..59f70eb 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,5 +1,4 @@ --- - image: name: gcr.io/kaniko-project/executor:debug entrypoint: [""] @@ -107,3 +106,15 @@ website-bullseye: stage: second variables: IMAGE_NAME: fsmpi-website + +astro-buster: + extends: .build-buster + stage: second + variables: + IMAGE_NAME: fsmpi-astro + +astro-bullseye: + extends: .build-bullseye + stage: second + variables: + IMAGE_NAME: fsmpi-astro diff --git a/fsmpi-astro/Dockerfile b/fsmpi-astro/Dockerfile new file mode 100644 index 0000000..4cb6593 --- /dev/null +++ b/fsmpi-astro/Dockerfile @@ -0,0 +1,5 @@ +ARG DEBIAN_RELEASE=bullseye +FROM registry.git.fsmpi.rwth-aachen.de/infra/ci-containers/fsmpi-python:${DEBIAN_RELEASE} +RUN apt-get update -y +RUN apt-get install -y openssh-client rsync default-jre git +RUN apt-get upgrade -y nodejs yarn -- GitLab