mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2024-11-13 21:26:53 +03:00
035dc4d7ab
* 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
27 lines
790 B
Plaintext
27 lines
790 B
Plaintext
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"]
|