mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2024-11-11 12:17:37 +03:00
275c13292c
* Integrate Flower with Docker Compose setup locally * Remove alien worker celeryd option * Move Flower COPY section below the worker's * Remove set -o pipefail command from Flower start script * Flower client authentication * Override flower service image name * Move flower service to the end of local.yml * Install flower==0.9.2 in all environments * Introduce production flower service * Fix local flower start script * Document Flower integration * Prettify *.django envs Rationale: consistency. * Reference local environment Flower docs from the production's * 'two more services' -> 'three more services'
55 lines
1.5 KiB
Docker
55 lines
1.5 KiB
Docker
FROM python:3.6-alpine
|
|
|
|
ENV PYTHONUNBUFFERED 1
|
|
|
|
RUN apk update \
|
|
# psycopg2 dependencies
|
|
&& apk add --virtual build-deps gcc python3-dev musl-dev \
|
|
&& apk add postgresql-dev \
|
|
# Pillow dependencies
|
|
&& apk add jpeg-dev zlib-dev freetype-dev lcms2-dev openjpeg-dev tiff-dev tk-dev tcl-dev \
|
|
# CFFI dependencies
|
|
&& apk add libffi-dev py-cffi
|
|
|
|
RUN addgroup -S django \
|
|
&& adduser -S -G django django
|
|
|
|
# Requirements are installed here to ensure they will be cached.
|
|
COPY ./requirements /requirements
|
|
RUN pip install --no-cache-dir -r /requirements/production.txt \
|
|
&& rm -rf /requirements
|
|
|
|
COPY ./compose/production/django/entrypoint /entrypoint
|
|
RUN sed -i 's/\r//' /entrypoint
|
|
RUN chmod +x /entrypoint
|
|
RUN chown django /entrypoint
|
|
|
|
COPY ./compose/production/django/start /start
|
|
RUN sed -i 's/\r//' /start
|
|
RUN chmod +x /start
|
|
RUN chown django /start
|
|
{% if cookiecutter.use_celery == "y" %}
|
|
COPY ./compose/production/django/celery/worker/start /start-celeryworker
|
|
RUN sed -i 's/\r//' /start-celeryworker
|
|
RUN chmod +x /start-celeryworker
|
|
RUN chown django /start-celeryworker
|
|
|
|
COPY ./compose/production/django/celery/beat/start /start-celerybeat
|
|
RUN sed -i 's/\r//' /start-celerybeat
|
|
RUN chmod +x /start-celerybeat
|
|
RUN chown django /start-celerybeat
|
|
|
|
COPY ./compose/production/django/celery/flower/start /start-flower
|
|
RUN sed -i 's/\r//' /start-flower
|
|
RUN chmod +x /start-flower
|
|
{% endif %}
|
|
COPY . /app
|
|
|
|
RUN chown -R django /app
|
|
|
|
USER django
|
|
|
|
WORKDIR /app
|
|
|
|
ENTRYPOINT ["/entrypoint"]
|