TRaw commited on
Commit
72e4219
1 Parent(s): 6c3652b

FROM python:3.9 WORKDIR /code COPY ./requirements.txt /code/requirements.txt RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt COPY . . CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "7860"]

Browse files
Files changed (1) hide show
  1. sjs +13 -1
sjs CHANGED
@@ -1 +1,13 @@
1
- git clone https://huggingface.co/spaces/TRaw/1111
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ git clone https://huggingface.co/spaces/TRaw/1111
2
+
3
+ FROM python:3.9
4
+
5
+ WORKDIR /code
6
+
7
+ COPY ./requirements.txt /code/requirements.txt
8
+
9
+ RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
10
+
11
+ COPY . .
12
+
13
+ CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "7860"]