From 11a48bce13bc01318e0fc5d2cd20f2a454c41813 Mon Sep 17 00:00:00 2001 From: Nicholas McDonnell <50747025+mcdonnnj@users.noreply.github.com> Date: Sun, 22 Jan 2023 20:31:08 -0500 Subject: [PATCH] Update the Dockerfile Update the Dockerfile to account for changes to the package structure. --- Dockerfile | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/Dockerfile b/Dockerfile index bba529c..e51f6e1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,11 +6,7 @@ RUN pip install --no-cache-dir --upgrade pip setuptools wheel COPY requirements.txt . -RUN pip install --no-cache-dir --requirement requirements.txt - -COPY scripts/ scripts/ - -COPY trustymail/ trustymail/ +COPY src/trustymail/ src/trustymail/ COPY README.md . @@ -18,7 +14,7 @@ COPY requirements-dev.txt . COPY setup.py . -RUN pip install --editable . +RUN pip install --no-cache-dir --requirement requirements.txt ENTRYPOINT ["trustymail"] CMD ["--help"]