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

75 lines
2.0 KiB
Docker
Raw Normal View History

2020-09-11 19:30:50 +03:00
# Python build stage
FROM python:3.8-slim-buster as python-build-stage
ENV PYTHONDONTWRITEBYTECODE 1
2020-09-11 19:30:50 +03:00
RUN apt-get update && apt-get install --no-install-recommends -y \
# dependencies for building Python packages
2020-09-11 19:30:50 +03:00
build-essential \
# psycopg2 dependencies
2020-09-11 19:30:50 +03:00
libpq-dev \
# 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
# create python dependency wheels
RUN pip wheel --no-cache-dir --no-deps --wheel-dir /usr/src/app/wheels \
-r /requirements/local.txt \
&& rm -rf /requirements
2020-09-11 19:30:50 +03:00
# Python 'run' stage
FROM python:3.8-slim-buster as python-run-stage
2020-09-11 19:30:50 +03:00
ENV PYTHONUNBUFFERED 1
ENV PYTHONDONTWRITEBYTECODE 1
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
2020-09-11 19:30:50 +03:00
{% 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 %}
2020-09-11 19:30:50 +03:00
# installing required system dependencies
RUN apt-get update && apt-get install --no-install-recommends -y \
# psycopg2 dependencies
libpq-dev \
# Translations dependencies
gettext \
# cleaning up unused files
&& apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false \
&& rm -rf /var/lib/apt/lists/*
# copy python dependency wheels from python-build-stage
COPY --from=python-build-stage /usr/src/app/wheels /wheels
2020-09-11 19:30:50 +03:00
# use wheels to install python dependencies
RUN pip install --no-cache /wheels/* \
&& rm -rf /wheels
2020-09-11 19:30:50 +03:00
WORKDIR /app
2018-05-14 10:28:50 +03:00
ENTRYPOINT ["/entrypoint"]