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

95 lines
2.6 KiB
Docker
Raw Normal View History

{% if cookiecutter.js_task_runner == 'Gulp' -%}
FROM node:10-stretch-slim as client-builder
WORKDIR /app
COPY ./package.json /app
RUN npm install && npm cache clean --force
COPY . /app
RUN npm run build
{%- endif %}
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 \
# Translations dependencies
2020-09-11 19:30:50 +03:00
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
2020-09-11 19:30:50 +03:00
# install python dependencies
Run pip install --no-cache-dir --use-feature=2020-resolver -r /requirements/production.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 PYTHONDONTWRITEBYTECODE 1
2020-09-11 19:30:50 +03:00
ENV PYTHONUNBUFFERED 1
RUN addgroup --system django \
&& adduser --system --ingroup django django
COPY --chown=django:django ./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-21 22:28:18 +03:00
COPY --chown=django:django ./compose/production/django/start /start
RUN sed -i 's/\r$//g' /start
2018-05-21 22:28:18 +03:00
RUN chmod +x /start
{%- if cookiecutter.use_celery == "y" %}
COPY --chown=django:django ./compose/production/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
COPY --chown=django:django ./compose/production/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/production/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 dependencies from python-build-stage
COPY --from=python-build-stage /usr/local/lib/python3.8/site-packages/ /usr/local/lib/python3.8/site-packages/
COPY --from=python-build-stage /usr/local/bin/ /usr/local/bin/
2020-09-11 19:30:50 +03:00
{%- if cookiecutter.js_task_runner == 'Gulp' %}
COPY --from=client-builder --chown=django:django /app /app
{% else %}
COPY --chown=django:django . /app
{%- endif %}
USER django
WORKDIR /app
2018-05-14 10:28:50 +03:00
ENTRYPOINT ["/entrypoint"]