From 148fb58643144c2ef3cbb3107bd32a07b8e83d09 Mon Sep 17 00:00:00 2001 From: Thomas Schneider <thomas@fsmpi.rwth-aachen.de> Date: Wed, 1 May 2019 18:46:50 +0200 Subject: [PATCH] Add fsmpi-website image --- .gitlab-ci.yml | 6 ++++++ fsmpi-website/Dockerfile | 3 +++ 2 files changed, 9 insertions(+) create mode 100644 fsmpi-website/Dockerfile diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index bdafcae..3b99f6f 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -88,3 +88,9 @@ ansible-buster: stage: second variables: IMAGE_NAME: fsmpi-ansible + +website-stretch: + extends: .build-stretch + stage: second + variables: + IMAGE_NAME: fsmpi-website diff --git a/fsmpi-website/Dockerfile b/fsmpi-website/Dockerfile new file mode 100644 index 0000000..c3fb015 --- /dev/null +++ b/fsmpi-website/Dockerfile @@ -0,0 +1,3 @@ +ARG DEBIAN_RELEASE=stretch +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