Fix Dockerfile to skip copying empty tests directory
ci/woodpecker/push/woodpecker Pipeline failed Details

This commit is contained in:
colin 2025-07-03 12:36:56 -04:00
parent 4a6e162c3c
commit d2bc9b049e
1 changed files with 2 additions and 1 deletions

View File

@ -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