Fix Dockerfile to skip copying empty tests directory
ci/woodpecker/push/woodpecker Pipeline failed
Details
ci/woodpecker/push/woodpecker Pipeline failed
Details
This commit is contained in:
parent
4a6e162c3c
commit
d2bc9b049e
|
@ -18,7 +18,8 @@ RUN pip install --no-cache-dir -r requirements.txt
|
||||||
COPY app.py .
|
COPY app.py .
|
||||||
COPY schema.sql .
|
COPY schema.sql .
|
||||||
COPY templates/ ./templates/
|
COPY templates/ ./templates/
|
||||||
COPY tests/ ./tests/
|
# Tests directory is empty or doesn't contain required files
|
||||||
|
# COPY tests/ ./tests/
|
||||||
|
|
||||||
# Create uploads directory
|
# Create uploads directory
|
||||||
RUN mkdir -p uploads
|
RUN mkdir -p uploads
|
||||||
|
|
Loading…
Reference in New Issue