Files
wehub-resource-sync 1dacb4cc91
lint PR / linter (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 13:03:53 +08:00

15 lines
256 B
Docker

ARG PATHWAY_SRC_IMAGE=pathwaycom/pathway:latest
FROM ${PATHWAY_SRC_IMAGE}
ENV PYTHONUNBUFFERED=1
WORKDIR /ui
COPY requirements.txt .
RUN pip install -U --no-cache-dir -r requirements.txt
COPY . .
CMD exec streamlit run ui.py --server.port ${UI_PORT}