new testarena

This commit is contained in:
2025-11-28 11:45:17 +01:00
parent fb26b8386b
commit 6bd880110b

View File

@@ -11,8 +11,11 @@ RUN apt-get update && apt-get install -y \
COPY requirements.txt . COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt RUN pip install --no-cache-dir -r requirements.txt
# Copy wsgi.py to root
COPY wsgi.py .
# Copy application # Copy application
COPY app/ /app/ COPY app/ ./app/
# Create necessary directories # Create necessary directories
RUN mkdir -p /app/test_results /app/static/uploads RUN mkdir -p /app/test_results /app/static/uploads