Dockerfile aktualisiert

This commit is contained in:
2025-11-12 11:47:35 +00:00
parent e983f47327
commit 342296ce12

View File

@@ -6,6 +6,7 @@ COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt RUN pip install --no-cache-dir -r requirements.txt
COPY app.py . COPY app.py .
COPY test.py .
EXPOSE 5000 EXPOSE 5000
CMD ["python", "app.py"] CMD ["python", "test.py"]