man08man commited on
Commit
3ffcaf0
Β·
verified Β·
1 Parent(s): b0b03f0

Create dockerfile

Browse files
Files changed (1) hide show
  1. dockerfile +5 -0
dockerfile ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ FROM python:3.9-slim # Use Python 3.9 instead of 3.10
2
+ WORKDIR /app
3
+ COPY . .
4
+ RUN pip install -r requirements.txt
5
+ CMD ["python", "app.py"]