bambadij commited on
Commit
c0d9019
·
1 Parent(s): 533b5a4

Add application file

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