-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #410 from ropable/master
Alpine Dockerfile, tweak HealthCheckMiddleware, bump dependencies.
- Loading branch information
Showing
10 changed files
with
368 additions
and
297 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,36 +1,52 @@ | ||
# syntax=docker/dockerfile:1 | ||
# Prepare the base environment. | ||
FROM python:3.12.4-slim AS builder_base_prs | ||
FROM python:3.12.6-alpine AS builder_base | ||
LABEL [email protected] | ||
LABEL org.opencontainers.image.source=https://github.com/dbca-wa/prs | ||
|
||
RUN apt-get update -y \ | ||
&& apt-get upgrade -y \ | ||
&& apt-get install -y libmagic-dev gcc binutils gdal-bin proj-bin python3-dev libpq-dev gzip curl \ | ||
&& rm -rf /var/lib/apt/lists/* \ | ||
&& pip install --root-user-action=ignore --upgrade pip | ||
# Install system requirements to build Python packages. | ||
RUN apk add --no-cache \ | ||
gcc \ | ||
libressl-dev \ | ||
musl-dev \ | ||
libffi-dev | ||
# Create a non-root user to run the application. | ||
ARG UID=10001 | ||
ARG GID=10001 | ||
RUN addgroup -g ${GID} appuser \ | ||
&& adduser -H -D -u ${UID} -G appuser appuser | ||
|
||
# Install Python libs using Poetry. | ||
FROM builder_base_prs AS python_libs_prs | ||
FROM builder_base AS python_libs_prs | ||
# Add system dependencies required to use GDAL | ||
# Ref: https://stackoverflow.com/a/59040511/14508 | ||
RUN apk add --no-cache \ | ||
gdal \ | ||
geos \ | ||
proj \ | ||
binutils \ | ||
libmagic \ | ||
&& ln -s /usr/lib/libproj.so.25 /usr/lib/libproj.so \ | ||
&& ln -s /usr/lib/libgdal.so.35 /usr/lib/libgdal.so \ | ||
&& ln -s /usr/lib/libgeos_c.so.1 /usr/lib/libgeos_c.so | ||
WORKDIR /app | ||
ARG POETRY_VERSION=1.8.3 | ||
RUN pip install --root-user-action=ignore poetry=="${POETRY_VERSION}" | ||
COPY poetry.lock pyproject.toml ./ | ||
RUN poetry config virtualenvs.create false \ | ||
ARG POETRY_VERSION=1.8.3 | ||
RUN pip install --no-cache-dir --root-user-action=ignore poetry==${POETRY_VERSION} \ | ||
&& poetry config virtualenvs.create false \ | ||
&& poetry install --no-interaction --no-ansi --only main | ||
|
||
# Create a non-root user. | ||
ARG UID=10001 | ||
ARG GID=10001 | ||
RUN groupadd -g "${GID}" appuser \ | ||
&& useradd --no-create-home --no-log-init --uid "${UID}" --gid "${GID}" appuser | ||
# Remove system libraries, no longer required. | ||
RUN apk del \ | ||
gcc \ | ||
libressl-dev \ | ||
musl-dev \ | ||
libffi-dev | ||
|
||
# Install the project. | ||
FROM python_libs_prs | ||
FROM python_libs_prs AS project_prs | ||
COPY gunicorn.py manage.py ./ | ||
COPY prs2 ./prs2 | ||
RUN python manage.py collectstatic --noinput | ||
|
||
USER ${UID} | ||
EXPOSE 8080 | ||
CMD ["gunicorn", "prs2.wsgi", "--config", "gunicorn.py"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
# syntax=docker/dockerfile:1 | ||
# Prepare the base environment. | ||
FROM python:3.12.4-slim AS builder_base_prs | ||
LABEL [email protected] | ||
LABEL org.opencontainers.image.source=https://github.com/dbca-wa/prs | ||
|
||
RUN apt-get update -y \ | ||
&& apt-get upgrade -y \ | ||
&& apt-get install -y libmagic-dev gcc binutils gdal-bin proj-bin python3-dev libpq-dev gzip curl \ | ||
&& rm -rf /var/lib/apt/lists/* \ | ||
&& pip install --root-user-action=ignore --upgrade pip | ||
|
||
# Install Python libs using Poetry. | ||
FROM builder_base_prs AS python_libs_prs | ||
WORKDIR /app | ||
ARG POETRY_VERSION=1.8.3 | ||
RUN pip install --root-user-action=ignore poetry==${POETRY_VERSION} | ||
COPY poetry.lock pyproject.toml ./ | ||
RUN poetry config virtualenvs.create false \ | ||
&& poetry install --no-interaction --no-ansi --only main | ||
|
||
# Create a non-root user. | ||
ARG UID=10001 | ||
ARG GID=10001 | ||
RUN groupadd -g ${GID} appuser \ | ||
&& useradd --no-create-home --no-log-init --uid ${UID} --gid ${GID} appuser | ||
|
||
# Install the project. | ||
FROM python_libs_prs | ||
COPY gunicorn.py manage.py ./ | ||
COPY prs2 ./prs2 | ||
RUN python manage.py collectstatic --noinput | ||
|
||
USER ${UID} | ||
EXPOSE 8080 | ||
CMD ["gunicorn", "prs2.wsgi", "--config", "gunicorn.py"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,4 +26,4 @@ patches: | |
- path: typesense_service_patch.yaml | ||
images: | ||
- name: ghcr.io/dbca-wa/prs | ||
newTag: 2.5.56 | ||
newTag: 2.5.57 |
Oops, something went wrong.