21 lines
393 B
Docker
21 lines
393 B
Docker
FROM python:3.11
|
|
|
|
# set environment variables
|
|
ENV PYTHONDONTWRITEBYTECODE 1
|
|
ENV PYTHONUNBUFFERED 1
|
|
|
|
WORKDIR /app
|
|
|
|
COPY requirements.txt /app/
|
|
# install python dependencies
|
|
RUN pip install --upgrade pip
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
COPY . /app/
|
|
|
|
# running migrations
|
|
RUN python manage.py migrate
|
|
|
|
# gunicorn
|
|
# CMD ["gunicorn", "--config", "gunicorn-cfg.py", "core.wsgi"]
|