Files
Hulumath-Web/Dockerfile
T
Jacky 1f800d713f
CI / test (pull_request) Failing after 1m48s
ci: use domestic Python package mirror
2026-08-08 23:23:49 +08:00

32 lines
803 B
Docker

FROM python:3.11-slim AS runtime
ARG PIP_INDEX_URL=https://pypi.org/simple
ENV PYTHONDONTWRITEBYTECODE=1 \
PYTHONUNBUFFERED=1 \
PIP_DISABLE_PIP_VERSION_CHECK=1 \
PIP_INDEX_URL=$PIP_INDEX_URL \
PIP_DEFAULT_TIMEOUT=120
WORKDIR /app
RUN apt-get update \
&& apt-get install -y --no-install-recommends default-libmysqlclient-dev pkg-config gcc \
&& addgroup --system hulumath \
&& adduser --system --ingroup hulumath hulumath \
&& rm -rf /var/lib/apt/lists/*
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY backend ./backend
COPY docs ./docs
WORKDIR /app/backend
RUN python manage.py collectstatic --noinput
USER hulumath
EXPOSE 8000
CMD ["uvicorn", "config.asgi:application", "--host", "0.0.0.0", "--port", "8000", "--proxy-headers"]