matrixlab / Dockerfile
github-actions[bot]
Deploy from c72e57d9
db14e6b
Raw
History Blame Contribute Delete
481 Bytes
FROM python:3.11-slim
RUN apt-get update && apt-get install -y --no-install-recommends \
git curl ca-certificates nodejs npm \
&& rm -rf /var/lib/apt/lists/*
RUN python -m pip install --no-cache-dir pipx uv && python -m pipx ensurepath
ENV PATH="/root/.local/bin:${PATH}"
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
ENV PORT=7860
EXPOSE 7860
CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "7860"]