* chore: add docker command shortcuts to makefile * chore: replaced entreypoint with cmd * chore: remove enviroment variable
9 lines
275 B
Docker
9 lines
275 B
Docker
# syntax=docker/dockerfile:1
|
|
# Keep this syntax directive! It's used to enable Docker BuildKit
|
|
|
|
ARG LANGFLOW_IMAGE
|
|
FROM $LANGFLOW_IMAGE
|
|
|
|
RUN rm -rf /app/.venv/langflow/frontend
|
|
|
|
CMD ["python", "-m", "langflow", "run", "--host", "0.0.0.0", "--port", "7860", "--backend-only"]
|