mirror of
https://github.com/Hopiu/cookiecutter-django.git
synced 2026-05-10 05:34:44 +00:00
* Introduce development-time Celery services Closes #1225. * Re-order django and postgres services in production.yml * Switch local service extension tactics * Fix celery services inheriting ports from the django's
26 lines
790 B
Text
26 lines
790 B
Text
FROM python:3.5
|
|
ENV PYTHONUNBUFFERED 1
|
|
|
|
# Requirements have to be pulled and installed here, otherwise caching won't work
|
|
COPY ./requirements /requirements
|
|
RUN pip install -r /requirements/local.txt
|
|
|
|
COPY ./compose/django/entrypoint.sh /entrypoint.sh
|
|
RUN sed -i 's/\r//' /entrypoint.sh
|
|
RUN chmod +x /entrypoint.sh
|
|
|
|
COPY ./compose/django/start-dev.sh /start-dev.sh
|
|
RUN sed -i 's/\r//' /start-dev.sh
|
|
RUN chmod +x /start-dev.sh
|
|
|
|
COPY ./compose/django/celery/worker/start-dev.sh /start-celeryworker-dev.sh
|
|
RUN sed -i 's/\r//' /start-celeryworker-dev.sh
|
|
RUN chmod +x /start-celeryworker-dev.sh
|
|
|
|
COPY ./compose/django/celery/beat/start-dev.sh /start-celerybeat-dev.sh
|
|
RUN sed -i 's/\r//' /start-celerybeat-dev.sh
|
|
RUN chmod +x /start-celerybeat-dev.sh
|
|
|
|
WORKDIR /app
|
|
|
|
ENTRYPOINT ["/entrypoint.sh"]
|