19 lines
556 B
Docker
19 lines
556 B
Docker
FROM python:3.11.4-slim-bookworm
|
|
ENV PYTHONUNBUFFERED 1
|
|
RUN mkdir /code
|
|
WORKDIR /code
|
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
libpq-dev \
|
|
gcc \
|
|
&& \
|
|
apt-get clean && \
|
|
rm -rf /var/lib/apt/lists/*
|
|
ADD requirements.txt /code/
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
ADD . /code/
|
|
|
|
RUN python -m pip install gunicorn
|
|
|
|
RUN python manage.py collectstatic --no-input --clear
|
|
CMD bash -c "python manage.py migrate && gunicorn -b 0.0.0.0:8000 --capture-output --error-logfile - --access-logfile - spejstore.wsgi:application"
|