mirror of
https://github.com/langflow-ai/langflow.git
synced 2026-07-24 00:39:35 +08:00
8 lines
124 B
Docker
8 lines
124 B
Docker
FROM python:3.11-slim
|
|
|
|
WORKDIR /app
|
|
COPY ./ /app
|
|
RUN pip install langflow
|
|
|
|
EXPOSE 5003
|
|
CMD ["langflow", "--host", "0.0.0.0"] |