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