mirror of
https://github.com/langflow-ai/langflow.git
synced 2026-07-24 02:05:11 +08:00
7 lines
151 B
Docker
7 lines
151 B
Docker
FROM python:3.11-slim
|
|
|
|
RUN apt-get update && apt-get install gcc -y
|
|
RUN pip install langflow>=0.0.33
|
|
|
|
EXPOSE 7860
|
|
CMD ["langflow", "--host", "0.0.0.0"] |