We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 94fd98b commit d741acfCopy full SHA for d741acf
1 file changed
Dockerfile
@@ -0,0 +1,18 @@
1
+
2
+# Use official Python image
3
+FROM python:3.10-slim
4
5
+# Set working directory
6
+WORKDIR /app
7
8
+# Copy app files
9
+COPY requirements.txt requirements.txt
10
+RUN pip install --no-cache-dir -r requirements.txt
11
12
+COPY . .
13
14
+# Expose port Flask runs on
15
+EXPOSE 5000
16
17
+# Run the application
18
+CMD ["python", "app.py"]
0 commit comments