Create Dockerfile
Browse files- Dockerfile +7 -0
Dockerfile
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
FROM ghcr.io/open-webui/open-webui:main
|
| 2 |
+
|
| 3 |
+
# Explicitly set the port to 7860 for Hugging Face compatibility
|
| 4 |
+
ENV PORT=7860
|
| 5 |
+
|
| 6 |
+
# Expose the port
|
| 7 |
+
EXPOSE 7860
|