Aswitha commited on
Commit
f9bdf00
·
verified ·
1 Parent(s): d2155a4

Create Dockerfile

Browse files
Files changed (1) hide show
  1. 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"]