Spaces:
Running
Running
trigger pipeline
Browse files- Dockerfile +3 -3
Dockerfile
CHANGED
@@ -18,8 +18,8 @@ COPY . /app
|
|
18 |
# Install any needed packages specified in requirements.txt
|
19 |
RUN pip install --no-cache-dir -r requirements.txt
|
20 |
|
21 |
-
# Make port
|
22 |
-
EXPOSE
|
23 |
|
24 |
# Command to run the Uvicorn server
|
25 |
-
CMD ["uvicorn", "main:app", "--host", "
|
|
|
18 |
# Install any needed packages specified in requirements.txt
|
19 |
RUN pip install --no-cache-dir -r requirements.txt
|
20 |
|
21 |
+
# Make port 7680 available to the world outside this container
|
22 |
+
EXPOSE 7860
|
23 |
|
24 |
# Command to run the Uvicorn server
|
25 |
+
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]
|