20 lines
488 B
Docker
20 lines
488 B
Docker
FROM python:3.12-slim
|
|
|
|
ENV PYTHONDONTWRITEBYTECODE=1 \
|
|
PYTHONUNBUFFERED=1
|
|
|
|
WORKDIR /app
|
|
|
|
# psycopg2-binary embarque sa propre libpq : pas besoin de build-essential ni libpq-dev.
|
|
COPY requirements.txt .
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
COPY . .
|
|
|
|
# Fichiers statiques de l'admin (ne nécessite pas la base de données)
|
|
RUN DJANGO_SECRET_KEY=build python manage.py collectstatic --noinput
|
|
|
|
EXPOSE 8000
|
|
RUN chmod +x /app/entrypoint.sh
|
|
ENTRYPOINT ["/app/entrypoint.sh"]
|