Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
|
@@ -18,7 +18,7 @@ COPY --from=builder /app/dist /usr/share/nginx/html
|
|
| 18 |
# Copy the custom Nginx configuration file
|
| 19 |
COPY nginx.conf /etc/nginx/nginx.conf
|
| 20 |
|
| 21 |
-
# EXPOSE port
|
| 22 |
-
EXPOSE
|
| 23 |
|
| 24 |
CMD ["nginx", "-g", "daemon off;"]
|
|
|
|
| 18 |
# Copy the custom Nginx configuration file
|
| 19 |
COPY nginx.conf /etc/nginx/nginx.conf
|
| 20 |
|
| 21 |
+
# EXPOSE port 7860 to match Hugging Face Spaces' expectation
|
| 22 |
+
EXPOSE 7860
|
| 23 |
|
| 24 |
CMD ["nginx", "-g", "daemon off;"]
|