Update Dockerfile
Browse files- Dockerfile +3 -5
Dockerfile
CHANGED
@@ -1,7 +1,5 @@
|
|
1 |
-
#
|
2 |
FROM vatsalpatel18/weather-chatbot-phi3:latest
|
3 |
|
4 |
-
# Expose the port that Gradio will run on
|
5 |
-
EXPOSE 7860
|
6 |
-
|
7 |
-
CMD ["docker", "run", "-p", "7680:7680", "vatsalpatel18/weather-chatbot-phi3:latest"]
|
|
|
1 |
+
# Pull the pre-built image from Docker Hub
|
2 |
FROM vatsalpatel18/weather-chatbot-phi3:latest
|
3 |
|
4 |
+
# Expose the port that Gradio will run on (If it's not already exposed in your image)
|
5 |
+
EXPOSE 7860
|
|
|
|