2019-03-25 15:10:55 +03:00
|
|
|
{% 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 %}
|
2017-09-05 14:39:20 +03:00
|
|
|
|
2020-09-11 19:30:50 +03:00
|
|
|
# Python build stage
|
|
|
|
FROM python:3.8-slim-buster as python-build-stage
|
2020-09-12 08:34:08 +03:00
|
|
|
ENV PYTHONDONTWRITEBYTECODE 1
|
2020-09-11 19:30:50 +03:00
|
|
|
|
|
|
|
# Requirements are installed here to ensure they will be cached.
|
|
|
|
COPY ./requirements /requirements
|
|
|
|
|
|
|
|
RUN apt-get update && apt-get install --no-install-recommends -y \
|
2020-01-07 14:06:31 +03:00
|
|
|
# dependencies for building Python packages
|
2020-09-11 19:30:50 +03:00
|
|
|
build-essential \
|
2018-02-22 18:01:05 +03:00
|
|
|
# psycopg2 dependencies
|
2020-09-11 19:30:50 +03:00
|
|
|
libpq-dev \
|
2020-01-07 14:06:31 +03:00
|
|
|
# Translations dependencies
|
2020-09-11 19:30:50 +03:00
|
|
|
gettext \
|
2020-01-07 14:06:31 +03:00
|
|
|
# cleaning up unused files
|
|
|
|
&& apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false \
|
2020-09-11 19:30:50 +03:00
|
|
|
&& rm -rf /var/lib/apt/lists/* \
|
2020-09-12 08:34:08 +03:00
|
|
|
# install python dependencies
|
|
|
|
&& pip install --no-cache-dir --use-feature=2020-resolver -r /requirements/production.txt \
|
2020-09-11 19:30:50 +03:00
|
|
|
&& rm -rf /requirements
|
|
|
|
|
|
|
|
|
|
|
|
# Python 'run' stage
|
|
|
|
FROM python:3.8-slim-buster
|
|
|
|
|
2020-09-12 08:34:08 +03:00
|
|
|
ENV PYTHONDONTWRITEBYTECODE 1
|
2020-09-11 19:30:50 +03:00
|
|
|
ENV PYTHONUNBUFFERED 1
|
2018-02-22 18:01:05 +03:00
|
|
|
|
2020-01-07 14:06:31 +03:00
|
|
|
RUN addgroup --system django \
|
|
|
|
&& adduser --system --ingroup django django
|
2017-09-05 14:39:20 +03:00
|
|
|
|
2020-09-08 11:04:10 +03:00
|
|
|
COPY --chown=django:django ./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
|
2018-05-21 22:28:18 +03:00
|
|
|
|
2020-09-08 11:04:10 +03:00
|
|
|
|
|
|
|
COPY --chown=django:django ./compose/production/django/start /start
|
2019-06-19 10:46:10 +03:00
|
|
|
RUN sed -i 's/\r$//g' /start
|
2018-05-21 22:28:18 +03:00
|
|
|
RUN chmod +x /start
|
2020-09-08 11:04:10 +03:00
|
|
|
|
2019-03-25 15:10:55 +03:00
|
|
|
|
|
|
|
{%- if cookiecutter.use_celery == "y" %}
|
2020-09-08 11:04:10 +03:00
|
|
|
COPY --chown=django:django ./compose/production/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
|
|
|
|
2020-09-08 11:04:10 +03:00
|
|
|
|
|
|
|
COPY --chown=django:django ./compose/production/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
|
2020-09-08 11:04:10 +03:00
|
|
|
|
2018-06-27 19:33:21 +03:00
|
|
|
|
|
|
|
COPY ./compose/production/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
|
2019-03-25 15:10:55 +03:00
|
|
|
{%- 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/*
|
|
|
|
|
|
|
|
|
2020-09-12 08:34:08 +03:00
|
|
|
# copy python dependencies from python-build-stage
|
2020-09-12 08:41:19 +03:00
|
|
|
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
|
|
|
|
2019-03-25 15:10:55 +03:00
|
|
|
{%- if cookiecutter.js_task_runner == 'Gulp' %}
|
2019-12-09 04:55:37 +03:00
|
|
|
COPY --from=client-builder --chown=django:django /app /app
|
2019-03-25 15:10:55 +03:00
|
|
|
{% else %}
|
2019-12-09 04:55:37 +03:00
|
|
|
COPY --chown=django:django . /app
|
2019-03-25 15:10:55 +03:00
|
|
|
{%- endif %}
|
2017-09-05 14:39:20 +03:00
|
|
|
|
|
|
|
USER django
|
|
|
|
|
|
|
|
WORKDIR /app
|
|
|
|
|
2018-05-14 10:28:50 +03:00
|
|
|
ENTRYPOINT ["/entrypoint"]
|