mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2024-11-11 12:17:37 +03:00
4a71b0b936
(instead of debian:buster-slim, shipped with Python 3.7.3)
43 lines
1.3 KiB
Docker
43 lines
1.3 KiB
Docker
FROM python:3.7-slim-buster
|
|
|
|
ENV PYTHONUNBUFFERED 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
|
|
|
|
COPY ./compose/production/django/entrypoint /entrypoint
|
|
RUN sed -i 's/\r$//g' /entrypoint
|
|
RUN chmod +x /entrypoint
|
|
|
|
COPY ./compose/local/django/start /start
|
|
RUN sed -i 's/\r$//g' /start
|
|
RUN chmod +x /start
|
|
{% if cookiecutter.use_celery == "y" %}
|
|
COPY ./compose/local/django/celery/worker/start /start-celeryworker
|
|
RUN sed -i 's/\r$//g' /start-celeryworker
|
|
RUN chmod +x /start-celeryworker
|
|
|
|
COPY ./compose/local/django/celery/beat/start /start-celerybeat
|
|
RUN sed -i 's/\r$//g' /start-celerybeat
|
|
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
|
|
|
|
ENTRYPOINT ["/entrypoint"]
|