2020-09-11 19:30:50 +03:00
|
|
|
# Python build stage
|
2024-10-05 22:20:29 +03:00
|
|
|
FROM ghcr.io/astral-sh/uv:python3.12-bookworm-slim AS python-build-stage
|
2017-09-05 14:39:20 +03:00
|
|
|
|
2024-10-06 12:55:59 +03:00
|
|
|
ARG APP_HOME=/app
|
|
|
|
|
|
|
|
WORKDIR ${APP_HOME}
|
|
|
|
|
|
|
|
# we need to move the virtualenv outside of the $APP_HOME directory because it will be overriden by the docker compose mount
|
|
|
|
ENV UV_COMPILE_BYTECODE=1 UV_LINK_MODE=copy
|
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 \
|
2024-03-26 18:47:02 +03:00
|
|
|
# psycopg dependencies
|
2024-10-26 12:06:29 +03:00
|
|
|
libpq-dev \
|
|
|
|
gettext \
|
|
|
|
wait-for-it
|
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.
|
2024-10-05 22:20:29 +03:00
|
|
|
RUN --mount=type=cache,target=/root/.cache/uv \
|
|
|
|
--mount=type=bind,source=pyproject.toml,target=pyproject.toml \
|
2024-10-22 21:48:43 +03:00
|
|
|
--mount=type=bind,source=uv.lock,target=uv.lock:rw \
|
2024-10-06 12:55:59 +03:00
|
|
|
uv sync --no-install-project
|
|
|
|
|
|
|
|
ADD . ${APP_HOME}
|
2020-09-11 19:30:50 +03:00
|
|
|
|
2024-10-05 22:20:29 +03:00
|
|
|
RUN --mount=type=cache,target=/root/.cache/uv \
|
2024-10-06 12:55:59 +03:00
|
|
|
uv sync
|
2020-09-11 19:30:50 +03:00
|
|
|
|
2023-07-03 12:55:33 +03:00
|
|
|
{% if cookiecutter.use_docker == "y" %}
|
|
|
|
# devcontainer dependencies and utils
|
|
|
|
RUN apt-get update && apt-get install --no-install-recommends -y \
|
|
|
|
sudo git bash-completion nano ssh
|
|
|
|
|
|
|
|
# Create devcontainer user and add it to sudoers
|
|
|
|
RUN groupadd --gid 1000 dev-user \
|
|
|
|
&& useradd --uid 1000 --gid dev-user --shell /bin/bash --create-home dev-user \
|
|
|
|
&& echo dev-user ALL=\(root\) NOPASSWD:ALL > /etc/sudoers.d/dev-user \
|
|
|
|
&& chmod 0440 /etc/sudoers.d/dev-user
|
|
|
|
{% endif %}
|
|
|
|
|
2024-10-06 12:55:59 +03:00
|
|
|
ENV PATH="/${APP_HOME}/.venv/bin:$PATH"
|
2017-09-05 14:39:20 +03:00
|
|
|
|
2018-05-14 10:28:50 +03:00
|
|
|
COPY ./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
|
2017-09-05 14:39:20 +03:00
|
|
|
|
2018-05-14 10:28:50 +03:00
|
|
|
COPY ./compose/local/django/start /start
|
2019-06-19 10:46:10 +03:00
|
|
|
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
|
|
|
|
2018-03-27 18:40:44 +03:00
|
|
|
{% if cookiecutter.use_celery == "y" %}
|
2018-05-14 10:28:50 +03:00
|
|
|
COPY ./compose/local/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
|
|
|
|
2018-05-14 10:28:50 +03:00
|
|
|
COPY ./compose/local/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
|
2018-06-27 19:33:21 +03:00
|
|
|
|
|
|
|
COPY ./compose/local/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
|
2018-03-27 18:40:44 +03:00
|
|
|
{% endif %}
|
2020-09-11 19:30:50 +03:00
|
|
|
|
2018-05-14 10:28:50 +03:00
|
|
|
ENTRYPOINT ["/entrypoint"]
|