Spaces:
No application file
No application file
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
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"]
|