2015-10-04 06:06:33 +03:00
|
|
|
FROM python:3.5
|
|
|
|
ENV PYTHONUNBUFFERED 1
|
|
|
|
|
|
|
|
# Requirements have to be pulled and installed here, otherwise caching won't work
|
2015-10-22 22:35:55 +03:00
|
|
|
COPY ./requirements /requirements
|
2015-10-04 06:06:33 +03:00
|
|
|
RUN pip install -r /requirements/local.txt
|
|
|
|
|
2015-10-22 22:35:55 +03:00
|
|
|
COPY ./compose/django/entrypoint.sh /entrypoint.sh
|
2016-01-06 20:04:36 +03:00
|
|
|
RUN sed -i 's/\r//' /entrypoint.sh
|
2015-10-24 20:27:04 +03:00
|
|
|
RUN chmod +x /entrypoint.sh
|
2015-10-04 06:06:33 +03:00
|
|
|
|
2016-08-16 22:20:41 +03:00
|
|
|
COPY ./compose/django/start-dev.sh /start-dev.sh
|
|
|
|
RUN sed -i 's/\r//' /start-dev.sh
|
|
|
|
RUN chmod +x /start-dev.sh
|
|
|
|
|
2017-08-11 10:13:30 +03:00
|
|
|
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
|
|
|
|
|
2015-10-04 06:06:33 +03:00
|
|
|
WORKDIR /app
|
|
|
|
|
|
|
|
ENTRYPOINT ["/entrypoint.sh"]
|