Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
@@ -9,7 +9,7 @@ COPY . /app
|
|
9 |
RUN pip install --no-cache-dir -r requirements.txt
|
10 |
|
11 |
# Make port 80 available to the world outside this container
|
12 |
-
EXPOSE
|
13 |
|
14 |
# Run app.py when the container launches
|
15 |
-
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "
|
|
|
9 |
RUN pip install --no-cache-dir -r requirements.txt
|
10 |
|
11 |
# Make port 80 available to the world outside this container
|
12 |
+
EXPOSE 7860
|
13 |
|
14 |
# Run app.py when the container launches
|
15 |
+
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]
|