assaylens-demo / Dockerfile
lighteternal's picture
Deploy AssayLens Gradio demo
a3c58be verified
Raw
History Blame Contribute Delete
367 Bytes
FROM python:3.11-slim
ENV GRADIO_SERVER_NAME=0.0.0.0
ENV GRADIO_SERVER_PORT=7860
ENV PYTHONUNBUFFERED=1
WORKDIR /app
COPY pyproject.toml README.md ./
COPY src ./src
COPY scripts ./scripts
COPY examples ./examples
RUN python -m pip install --no-cache-dir -U pip \
&& python -m pip install --no-cache-dir -e ".[ui]"
CMD ["python", "scripts/11_gradio_demo.py"]