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

88 lines
2.7 KiB
Docker
Raw Normal View History

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
ENV UV_COMPILE_BYTECODE=1 UV_LINK_MODE=copy
ARG BUILD_ENVIRONMENT=local
# Install apt packages
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 \
# psycopg dependencies
libpq-dev
# 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=uv.lock,target=uv.lock \
--mount=type=bind,source=pyproject.toml,target=pyproject.toml \
uv sync --frozen --no-install-project --no-dev \
2020-09-11 19:30:50 +03:00
2024-10-05 22:20:29 +03:00
ADD . /app
RUN --mount=type=cache,target=/root/.cache/uv \
uv sync --frozen --no-dev
2020-09-11 19:30:50 +03:00
# Python 'run' stage
2024-10-05 22:20:29 +03:00
FROM docker.io/python:3.12.7-slim-bookworm AS python-run-stage
ARG BUILD_ENVIRONMENT=local
ARG APP_HOME=/app
ENV PYTHONUNBUFFERED=1
ENV PYTHONDONTWRITEBYTECODE=1
ENV BUILD_ENV=${BUILD_ENVIRONMENT}
WORKDIR ${APP_HOME}
{% 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 %}
# Install required system dependencies
RUN apt-get update && apt-get install --no-install-recommends -y \
# psycopg dependencies
libpq-dev \
wait-for-it \
# Translations dependencies
gettext \
# cleaning up unused files
&& apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false \
&& rm -rf /var/lib/apt/lists/*
# 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
2024-10-05 22:20:29 +03:00
COPY --from=builder --chown=app:app ${APP_HOME} ${APP_HOME}
2018-05-14 10:28:50 +03:00
COPY ./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-14 10:28:50 +03:00
COPY ./compose/local/django/start /start
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
{% if cookiecutter.use_celery == "y" %}
2018-05-14 10:28:50 +03:00
COPY ./compose/local/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
2018-05-14 10:28:50 +03:00
COPY ./compose/local/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/local/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
2024-10-05 22:20:29 +03:00
ENV PATH="/app/.venv/bin:$PATH"
2018-05-14 10:28:50 +03:00
ENTRYPOINT ["/entrypoint"]