d6df8d9b8c
cerley beat worker redis setting for cerley
17 lines
424 B
Docker
17 lines
424 B
Docker
FROM python:3.12-slim
|
|
|
|
ENV PYTHONDONTWRITEBYTECODE 1
|
|
ENV PYTHONUNBUFFERED 1
|
|
|
|
WORKDIR /app
|
|
|
|
COPY requirements.txt /app/
|
|
RUN pip install -r requirements.txt
|
|
|
|
COPY . /app/
|
|
|
|
|
|
CMD ["sh", "-c", "python manage.py makemigrations && \
|
|
python manage.py migrate && \
|
|
python manage.py collectstatic --no-input && \
|
|
gunicorn core.wsgi:application --bind 0.0.0.0:8000 --workers 3"] |