GabrielLogspace commited on
Commit
39030d2
1 Parent(s): e6cfe3a

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +6 -0
Dockerfile ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ FROM python:3.10-slim
2
+
3
+ RUN apt-get update && apt-get install gcc git make -y
4
+
5
+ RUN pip install langflow>=0.0.45
6
+ CMD ["langflow", "--host", "0.0.0.0", "--port", "7860"]