cookiecutter-django/{{cookiecutter.project_slug}}/compose/local/django/Dockerfile

44 lines
1.3 KiB
Docker
Raw Normal View History

2020-03-29 20:55:27 +03:00
FROM python:3.8-slim-buster
ENV PYTHONUNBUFFERED 1
ENV PYTHONDONTWRITEBYTECODE 1
RUN apt-get update \
# dependencies for building Python packages
&& apt-get install -y build-essential \
# psycopg2 dependencies
&& apt-get install -y libpq-dev \
# Translations dependencies
&& 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/*
# Requirements are installed here to ensure they will be cached.
COPY ./requirements /requirements
RUN pip install -r /requirements/local.txt
2018-05-14 10:28:50 +03:00
COPY ./compose/production/django/entrypoint /entrypoint
RUN sed -i 's/\r$//g' /entrypoint
2018-05-14 10:28:50 +03:00
RUN chmod +x /entrypoint
2018-05-14 10:28:50 +03:00
COPY ./compose/local/django/start /start
RUN sed -i 's/\r$//g' /start
2018-05-14 10:28:50 +03:00
RUN chmod +x /start
{% if cookiecutter.use_celery == "y" %}
2018-05-14 10:28:50 +03:00
COPY ./compose/local/django/celery/worker/start /start-celeryworker
RUN sed -i 's/\r$//g' /start-celeryworker
2018-05-14 10:28:50 +03:00
RUN chmod +x /start-celeryworker
2018-05-14 10:28:50 +03:00
COPY ./compose/local/django/celery/beat/start /start-celerybeat
RUN sed -i 's/\r$//g' /start-celerybeat
2018-05-14 10:28:50 +03:00
RUN chmod +x /start-celerybeat
COPY ./compose/local/django/celery/flower/start /start-flower
RUN sed -i 's/\r$//g' /start-flower
RUN chmod +x /start-flower
{% endif %}
WORKDIR /app
2018-05-14 10:28:50 +03:00
ENTRYPOINT ["/entrypoint"]