Update Dockerfile

This commit is contained in:
2026-09-08 15:34:08 +00:00
parent 6dc7b3ba85
commit 3ace5f6c83
+13 -7
View File
@@ -1,7 +1,13 @@
Code
+
Requirements
+
Instructions
=
Docker Image
FROM python:3.11-slim
WORKDIR /app
COPY requirements.txt
RUN pip install --no-cache-dir -r requirements.txt
COPY..
EXPOSE 5000
CMD ["python", "app.py"]