From 80cd8bc5de5016c053daaba12b3a8cbf8569d2dd Mon Sep 17 00:00:00 2001 From: Edward Kirk <ek599@cam.ac.uk> Date: Tue, 23 Jul 2024 12:32:55 +0100 Subject: [PATCH] bug: add empty dockerfile to appease gitlab pipeline --- .gitlab-ci.yml | 1 - Dockerfile | 8 ++++++++ 2 files changed, 8 insertions(+), 1 deletion(-) create mode 100644 Dockerfile diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index dfa9f23..17c0ca3 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -8,4 +8,3 @@ include: variables: DAST_DISABLED: true - BUILD_DISABLED: true diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..fe90261 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,8 @@ +# This is added to appease the gitlab build job +FROM registry.gitlab.developers.cam.ac.uk/uis/devops/infra/dockerimages/python:3.11-slim + +RUN adduser --system --no-create-home nonroot +user nonroot + +HEALTHCHECK --interval=5m --timeout=3s \ + CMD touch /var/healthy -- GitLab