2023-01-03 01:31:02 +03:00
|
|
|
ARG PYTHON_VERSION=3.11-slim
|
2022-11-23 11:41:43 +03:00
|
|
|
|
|
|
|
|
|
|
|
# define an alias for the specfic python version used in this file.
|
|
|
|
FROM python:${PYTHON_VERSION} as python
|
|
|
|
|
|
|
|
# Python build stage
|
|
|
|
FROM python as python-build-stage
|
|
|
|
|
|
|
|
ARG BUILD_ENVIRONMENT=production
|
|
|
|
|
|
|
|
# Install apt packages
|
|
|
|
RUN apt-get update && apt-get install --no-install-recommends -y \
|
|
|
|
# dependencies for building Python packages
|
|
|
|
build-essential \
|
|
|
|
# psycopg2 dependencies
|
|
|
|
libpq-dev
|
|
|
|
|
|
|
|
|
|
|
|
# Python 'run' stage
|
|
|
|
FROM python as python-run-stage
|
|
|
|
|
|
|
|
ARG BUILD_ENVIRONMENT=production
|
|
|
|
ARG APP_HOME=/app
|
|
|
|
|
|
|
|
ENV PYTHONUNBUFFERED 1
|
|
|
|
ENV PYTHONDONTWRITEBYTECODE 1
|
|
|
|
ENV BUILD_ENV ${BUILD_ENVIRONMENT}
|
|
|
|
|
|
|
|
WORKDIR ${APP_HOME}
|
|
|
|
|
|
|
|
RUN addgroup --system django \
|
|
|
|
&& adduser --system --ingroup django django
|
|
|
|
|
|
|
|
|
|
|
|
# Install 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/*
|
|
|
|
|
|
|
|
|
2023-08-30 11:55:35 +03:00
|
|
|
RUN pip install "poetry==$POETRY_VERSION"
|
|
|
|
RUN python -m venv /venv
|
2023-01-03 01:31:02 +03:00
|
|
|
|
2023-08-30 11:55:35 +03:00
|
|
|
COPY pyproject.toml poetry.lock /app/
|
|
|
|
RUN poetry export -f requirements.txt | /venv/bin/pip install -r /dev/stdin
|
2023-01-03 01:31:02 +03:00
|
|
|
|
2023-08-30 11:55:35 +03:00
|
|
|
COPY . .
|
|
|
|
RUN poetry build && /venv/bin/pip install dist/*.whl
|
2022-11-23 11:41:43 +03:00
|
|
|
|
|
|
|
COPY --chown=django:django ./compose/production/django/entrypoint /entrypoint
|
|
|
|
RUN sed -i 's/\r$//g' /entrypoint
|
|
|
|
RUN chmod +x /entrypoint
|
|
|
|
|
|
|
|
COPY --chown=django:django ./compose/production/django/start /start
|
|
|
|
RUN sed -i 's/\r$//g' /start
|
|
|
|
RUN chmod +x /start
|
|
|
|
COPY --chown=django:django ./compose/production/django/celery/worker/start /start-celeryworker
|
|
|
|
RUN sed -i 's/\r$//g' /start-celeryworker
|
|
|
|
RUN chmod +x /start-celeryworker
|
|
|
|
|
2023-08-30 11:46:53 +03:00
|
|
|
COPY ./compose/local/django/start-redirect /start-redirect
|
|
|
|
RUN sed -i 's/\r$//g' /start-redirect
|
|
|
|
RUN chmod +x /start-redirect
|
2022-11-23 11:41:43 +03:00
|
|
|
|
|
|
|
COPY --chown=django:django ./compose/production/django/celery/beat/start /start-celerybeat
|
|
|
|
RUN sed -i 's/\r$//g' /start-celerybeat
|
|
|
|
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
|
|
|
|
|
|
|
|
|
|
|
|
# copy application code to WORKDIR
|
|
|
|
COPY --chown=django:django . ${APP_HOME}
|
|
|
|
|
|
|
|
# make django owner of the WORKDIR directory as well.
|
|
|
|
RUN chown django:django ${APP_HOME}
|
|
|
|
|
|
|
|
USER django
|
|
|
|
|
|
|
|
ENTRYPOINT ["/entrypoint"]
|