Adapters
English
art
noxo8888 commited on
Commit
03f7783
·
verified ·
1 Parent(s): 76980ac

Create dockefile

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