PhoenixStormJr commited on
Commit
9e1b0bc
·
verified ·
1 Parent(s): 0315fda

Upload Dockerfile with huggingface_hub

Browse files
Files changed (1) hide show
  1. Dockerfile +13 -0
Dockerfile ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # syntax=docker/dockerfile:1
2
+
3
+ FROM python:3.10-bullseye
4
+
5
+ EXPOSE 7860
6
+
7
+ WORKDIR /app
8
+
9
+ COPY . .
10
+
11
+ RUN pip3 install -r requirements.txt
12
+
13
+ CMD ["python3", "infer-web.py"]