2019-03-25 15:10:55 +03:00
|
|
|
{% if cookiecutter.js_task_runner == 'Gulp' -%}
|
|
|
|
FROM node:10-stretch-slim as client-builder
|
|
|
|
|
2021-02-24 08:28:28 +03:00
|
|
|
ARG APP_HOME=/app
|
|
|
|
WORKDIR ${APP_HOME}
|
|
|
|
|
|
|
|
COPY ./package.json ${APP_HOME}
|
2019-03-25 15:10:55 +03:00
|
|
|
RUN npm install && npm cache clean --force
|
2021-02-24 08:28:28 +03:00
|
|
|
COPY . ${APP_HOME}
|
2019-03-25 15:10:55 +03:00
|
|
|
RUN npm run build
|
|
|
|
|
|
|
|
{%- endif %}
|
2017-09-05 14:39:20 +03:00
|
|
|
|
2021-04-08 20:43:54 +03:00
|
|
|
ARG PYTHON_VERSION=3.9-slim-buster
|
2020-09-16 12:54:16 +03:00
|
|
|
|
2021-02-24 08:28:28 +03:00
|
|
|
# define an alias for the specfic python version used in this file.
|
|
|
|
FROM python:${PYTHON_VERSION} as python
|
2017-09-05 14:39:20 +03:00
|
|
|
|
2021-02-24 08:28:28 +03:00
|
|
|
# Python build stage
|
|
|
|
FROM python as python-build-stage
|
|
|
|
|
|
|
|
ARG BUILD_ENVIRONMENT=production
|
2020-09-11 19:30:50 +03:00
|
|
|
|
2021-02-24 08:28:28 +03:00
|
|
|
# Install apt packages
|
2020-09-11 19:30:50 +03:00
|
|
|
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
|
2021-02-24 08:28:28 +03:00
|
|
|
libpq-dev
|
2020-09-16 12:54:16 +03:00
|
|
|
|
2020-09-13 23:11:33 +03:00
|
|
|
# Requirements are installed here to ensure they will be cached.
|
2021-02-24 08:28:28 +03:00
|
|
|
COPY ./requirements .
|
|
|
|
|
|
|
|
# Create Python Dependency and Sub-Dependency Wheels.
|
|
|
|
RUN pip wheel --wheel-dir /usr/src/app/wheels \
|
|
|
|
-r ${BUILD_ENVIRONMENT}.txt
|
2020-09-11 19:30:50 +03:00
|
|
|
|
|
|
|
|
|
|
|
# Python 'run' stage
|
2021-02-24 08:28:28 +03:00
|
|
|
FROM python as python-run-stage
|
|
|
|
|
|
|
|
ARG BUILD_ENVIRONMENT=production
|
|
|
|
ARG APP_HOME=/app
|
2020-09-11 19:30:50 +03:00
|
|
|
|
|
|
|
ENV PYTHONUNBUFFERED 1
|
2021-02-24 08:28:28 +03:00
|
|
|
ENV PYTHONDONTWRITEBYTECODE 1
|
|
|
|
ENV BUILD_ENV ${BUILD_ENVIRONMENT}
|
|
|
|
|
|
|
|
WORKDIR ${APP_HOME}
|
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
|
|
|
|
2021-02-24 08:28:28 +03:00
|
|
|
|
|
|
|
# Install required system dependencies
|
|
|
|
RUN apt-get update && apt-get install --no-install-recommends -y \
|
|
|
|
# psycopg2 dependencies
|
|
|
|
libpq-dev \
|
2020-01-07 14:06:31 +03:00
|
|
|
# Translations dependencies
|
2021-02-24 08:28:28 +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 \
|
|
|
|
&& rm -rf /var/lib/apt/lists/*
|
2018-02-22 18:01:05 +03:00
|
|
|
|
2021-02-24 08:28:28 +03:00
|
|
|
# All absolute dir copies ignore workdir instruction. All relative dir copies are wrt to the workdir instruction
|
|
|
|
# copy python dependency wheels from python-build-stage
|
|
|
|
COPY --from=python-build-stage /usr/src/app/wheels /wheels/
|
|
|
|
|
|
|
|
# use wheels to install python dependencies
|
|
|
|
RUN pip install --no-cache-dir --no-index --find-links=/wheels/ /wheels/* \
|
2021-02-24 13:56:58 +03:00
|
|
|
&& rm -rf /wheels/
|
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
|
|
|
|
2021-02-24 08:28:28 +03:00
|
|
|
# copy application code to WORKDIR
|
2019-03-25 15:10:55 +03:00
|
|
|
{%- if cookiecutter.js_task_runner == 'Gulp' %}
|
2021-02-24 08:28:28 +03:00
|
|
|
COPY --from=client-builder --chown=django:django ${APP_HOME} ${APP_HOME}
|
2019-03-25 15:10:55 +03:00
|
|
|
{% else %}
|
2021-02-24 08:28:28 +03:00
|
|
|
COPY --chown=django:django . ${APP_HOME}
|
2019-03-25 15:10:55 +03:00
|
|
|
{%- endif %}
|
2017-09-05 14:39:20 +03:00
|
|
|
|
2021-02-24 08:28:28 +03:00
|
|
|
# make django owner of the WORKDIR directory as well.
|
|
|
|
RUN chown django:django ${APP_HOME}
|
2017-09-05 14:39:20 +03:00
|
|
|
|
2021-02-24 08:28:28 +03:00
|
|
|
USER django
|
2017-09-05 14:39:20 +03:00
|
|
|
|
2018-05-14 10:28:50 +03:00
|
|
|
ENTRYPOINT ["/entrypoint"]
|