From b0e13329009bb36f1fac9f0cf8213ca6d6fb63e2 Mon Sep 17 00:00:00 2001 From: Karel van Klink <karel.vanklink@geant.org> Date: Fri, 3 Nov 2023 15:31:23 +0100 Subject: [PATCH] remove unnecessary /etc/gso folder --- Dockerfile | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 73504a46..0c1fac67 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,10 +12,8 @@ RUN pip install \ --target /app \ geant-service-orchestrator==${ARTIFACT_VERSION} -# Create the directory for the configuration and copy the example config into it -# NOTE: a real config must be mounted at /etc/gso/config.json when running the container -RUN mkdir -p /etc/gso && \ - chown -R appuser:appgroup /etc/gso +# Copy an example config into the container +# NOTE: a real config must be mounted at /app/config.json when running the container COPY --chown=appuser:appgroup gso/oss-params-example.json /app/config.json # The app reads the configuration from this location. -- GitLab