From 54a73243cc3f2c8df633d275e45d9376fb75d148 Mon Sep 17 00:00:00 2001 From: krateng Date: Mon, 21 Feb 2022 04:42:20 +0100 Subject: [PATCH] Adjustments to dev testing --- Dockerfile-dev | 5 ++++- dockertest.sh => dev-scripts/dockertest.sh | 0 2 files changed, 4 insertions(+), 1 deletion(-) rename dockertest.sh => dev-scripts/dockertest.sh (100%) diff --git a/Dockerfile-dev b/Dockerfile-dev index 9d1b202..78cd8d5 100644 --- a/Dockerfile-dev +++ b/Dockerfile-dev @@ -19,7 +19,10 @@ RUN sed 's/#.*//' ./install/dependencies_run.txt | xargs apk add --no-cache # Python dependencies RUN pip3 install --no-cache-dir -r requirements.txt # Local project install -COPY . . +COPY ./maloja ./maloja +COPY ./pyproject.toml ./pyproject.toml +COPY ./README.md ./README.md +COPY ./LICENSE ./LICENSE RUN pip3 install /usr/src/app # Remove build dependencies RUN apk del .build-deps diff --git a/dockertest.sh b/dev-scripts/dockertest.sh similarity index 100% rename from dockertest.sh rename to dev-scripts/dockertest.sh