Spaces:
Building
Building
Update Dockerfile
Browse files- Dockerfile +6 -1
Dockerfile
CHANGED
@@ -13,4 +13,9 @@ COPY --chown=user ./requirements.txt requirements.txt
|
|
13 |
RUN pip install --no-cache-dir --upgrade -r requirements.txt
|
14 |
|
15 |
COPY --chown=user . /app
|
16 |
-
|
|
|
|
|
|
|
|
|
|
|
|
13 |
RUN pip install --no-cache-dir --upgrade -r requirements.txt
|
14 |
|
15 |
COPY --chown=user . /app
|
16 |
+
EXPOSE 7860
|
17 |
+
#ENTRYPOINT ["python"]
|
18 |
+
CMD ["cd", "/app", "&&", "python", "app.py" ]
|
19 |
+
|
20 |
+
|
21 |
+
#CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]
|