* docker: improve image layout and backend-only image * add tests * add tests * add frontend * add frontend * label * fix
8 lines
239 B
Docker
8 lines
239 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 ["--host", "0.0.0.0", "--port", "7860", "--backend-only"]
|