21 lines
422 B
Docker
21 lines
422 B
Docker
FROM python:3.12-slim
|
|
|
|
WORKDIR /app
|
|
|
|
RUN apt-get update && apt-get install -y \
|
|
libpq-dev gcc \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
COPY requirements/base.txt requirements/base.txt
|
|
|
|
RUN pip install --no-cache-dir \
|
|
--proxy http://host.docker.internal:10808 \
|
|
--timeout 120 \
|
|
-r requirements/base.txt
|
|
|
|
COPY . .
|
|
|
|
EXPOSE 8000
|
|
|
|
CMD ["uvicorn", "config.asgi:application", "--host", "0.0.0.0", "--port", "8000"]
|