Spaces:
Sleeping
Sleeping
Create Dockerfile
Browse files- Dockerfile +8 -0
Dockerfile
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Use the official image for Langflow
|
| 2 |
+
FROM langflowai/langflow:latest
|
| 3 |
+
|
| 4 |
+
# Expose the port the application will run on
|
| 5 |
+
EXPOSE 7860
|
| 6 |
+
|
| 7 |
+
# Command to start Langflow, making it accessible
|
| 8 |
+
CMD ["langflow", "--host", "0.0.0.0", "--port", "7860"]
|