Update Dockerfile
Browse files- Dockerfile +1 -3
Dockerfile
CHANGED
@@ -32,8 +32,6 @@ WORKDIR /app
|
|
32 |
# Copy the rest of the application from the current directory to /app inside the container
|
33 |
COPY . .
|
34 |
|
35 |
-
# Expose port 80 to the outside world
|
36 |
-
EXPOSE 80
|
37 |
|
38 |
# Command to run the Uvicorn server using check_health.sh to wait for the model_server
|
39 |
-
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "
|
|
|
32 |
# Copy the rest of the application from the current directory to /app inside the container
|
33 |
COPY . .
|
34 |
|
|
|
|
|
35 |
|
36 |
# Command to run the Uvicorn server using check_health.sh to wait for the model_server
|
37 |
+
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]
|