yukee1992 commited on
Commit
385f56d
·
verified ·
1 Parent(s): aaa8389

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +13 -0
Dockerfile ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Dockerfile
2
+ FROM python:3.9
3
+
4
+ WORKDIR /app
5
+ COPY requirements.txt .
6
+ RUN pip install -r requirements.txt
7
+
8
+ COPY . .
9
+
10
+ # Expose both ports
11
+ EXPOSE 8000 7860
12
+
13
+ CMD ["python", "app.py"]