Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +2 -1
Dockerfile
CHANGED
@@ -12,6 +12,7 @@ RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
|
|
12 |
RUN pip install uvicorn
|
13 |
# Install dependencies
|
14 |
RUN pip install -r requirements.txt
|
15 |
-
|
|
|
16 |
ENTRYPOINT ["uvicorn", "app:app"]
|
17 |
CMD ["--host", "0.0.0.0", "--port", "7860"]
|
|
|
12 |
RUN pip install uvicorn
|
13 |
# Install dependencies
|
14 |
RUN pip install -r requirements.txt
|
15 |
+
|
16 |
+
COPY . .
|
17 |
ENTRYPOINT ["uvicorn", "app:app"]
|
18 |
CMD ["--host", "0.0.0.0", "--port", "7860"]
|