From 49f1d093623e70ea009cc5e0d601e1b06606705f Mon Sep 17 00:00:00 2001 From: Jack Plowman <62281988+JackPlowman@users.noreply.github.com> Date: Mon, 30 Sep 2024 20:15:49 +0100 Subject: [PATCH] Fix analyser copy --- Dockerfile | 3 ++- run.sh | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index b9452f5..d5aba2e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,7 +10,8 @@ RUN mkdir -p /statistics && \ COPY --chmod=755 run.sh run.sh -COPY pyproject.toml poetry.lock analyser ./ +COPY analyser analyser +COPY pyproject.toml poetry.lock ./ RUN pip install --no-cache-dir poetry==1.8.3 \ && poetry install --no-dev diff --git a/run.sh b/run.sh index e11b18d..978dc03 100755 --- a/run.sh +++ b/run.sh @@ -1,4 +1,5 @@ #!/bin/sh +set -e +x # Echo cwd echo "Current working directory: $(pwd)"