2020-01-07 16:54:15 +03:00
|
|
|
FROM python:3.7-slim-buster
|
2017-09-05 14:39:20 +03:00
|
|
|
|
|
|
|
ENV PYTHONUNBUFFERED 1
|
2020-03-11 20:37:12 +03:00
|
|
|
ENV PYTHONDONTWRITEBYTECODE 1
|
2017-09-05 14:39:20 +03:00
|
|
|
|
2020-01-07 14:06:31 +03:00
|
|
|
RUN apt-get update \
|
|
|
|
# dependencies for building Python packages
|
2020-01-07 16:54:15 +03:00
|
|
|
&& apt-get install -y build-essential \
|
2018-02-22 18:01:05 +03:00
|
|
|
# psycopg2 dependencies
|
2020-01-07 14:06:31 +03:00
|
|
|
&& apt-get install -y libpq-dev \
|
2018-02-22 18:01:05 +03:00
|
|
|
# Translations dependencies
|
2020-01-07 14:06:31 +03:00
|
|
|
&& apt-get install -y gettext \
|
|
|
|
# cleaning up unused files
|
|
|
|
&& apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false \
|
|
|
|
&& rm -rf /var/lib/apt/lists/*
|
2018-02-22 18:01:05 +03:00
|
|
|
|
2018-03-27 18:40:44 +03:00
|
|
|
# Requirements are installed here to ensure they will be cached.
|
2017-09-05 14:39:20 +03:00
|
|
|
COPY ./requirements /requirements
|
|
|
|
RUN pip install -r /requirements/local.txt
|
|
|
|
|
2018-05-14 10:28:50 +03:00
|
|
|
COPY ./compose/production/django/entrypoint /entrypoint
|
2019-06-19 10:46:10 +03:00
|
|
|
RUN sed -i 's/\r$//g' /entrypoint
|
2018-05-14 10:28:50 +03:00
|
|
|
RUN chmod +x /entrypoint
|
2017-09-05 14:39:20 +03:00
|
|
|
|
2018-05-14 10:28:50 +03:00
|
|
|
COPY ./compose/local/django/start /start
|
2019-06-19 10:46:10 +03:00
|
|
|
RUN sed -i 's/\r$//g' /start
|
2018-05-14 10:28:50 +03:00
|
|
|
RUN chmod +x /start
|
2018-03-27 18:40:44 +03:00
|
|
|
{% if cookiecutter.use_celery == "y" %}
|
2018-05-14 10:28:50 +03:00
|
|
|
COPY ./compose/local/django/celery/worker/start /start-celeryworker
|
2019-06-19 10:46:10 +03:00
|
|
|
RUN sed -i 's/\r$//g' /start-celeryworker
|
2018-05-14 10:28:50 +03:00
|
|
|
RUN chmod +x /start-celeryworker
|
2017-09-05 14:39:20 +03:00
|
|
|
|
2018-05-14 10:28:50 +03:00
|
|
|
COPY ./compose/local/django/celery/beat/start /start-celerybeat
|
2019-06-19 10:46:10 +03:00
|
|
|
RUN sed -i 's/\r$//g' /start-celerybeat
|
2018-05-14 10:28:50 +03:00
|
|
|
RUN chmod +x /start-celerybeat
|
2018-06-27 19:33:21 +03:00
|
|
|
|
|
|
|
COPY ./compose/local/django/celery/flower/start /start-flower
|
2019-06-19 10:46:10 +03:00
|
|
|
RUN sed -i 's/\r$//g' /start-flower
|
2018-06-27 19:33:21 +03:00
|
|
|
RUN chmod +x /start-flower
|
2018-03-27 18:40:44 +03:00
|
|
|
{% endif %}
|
2017-09-05 14:39:20 +03:00
|
|
|
WORKDIR /app
|
|
|
|
|
2018-05-14 10:28:50 +03:00
|
|
|
ENTRYPOINT ["/entrypoint"]
|