From d2bc9b049eb55801fa125acb1631359434b15453 Mon Sep 17 00:00:00 2001 From: colin Date: Thu, 3 Jul 2025 12:36:56 -0400 Subject: [PATCH] Fix Dockerfile to skip copying empty tests directory --- docker/ploughshares/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docker/ploughshares/Dockerfile b/docker/ploughshares/Dockerfile index 1d7c645..b185088 100644 --- a/docker/ploughshares/Dockerfile +++ b/docker/ploughshares/Dockerfile @@ -18,7 +18,8 @@ RUN pip install --no-cache-dir -r requirements.txt COPY app.py . COPY schema.sql . COPY templates/ ./templates/ -COPY tests/ ./tests/ +# Tests directory is empty or doesn't contain required files +# COPY tests/ ./tests/ # Create uploads directory RUN mkdir -p uploads