-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile.debian
33 lines (29 loc) · 1.14 KB
/
Dockerfile.debian
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# syntax=docker/dockerfile:1
# Prepare the base environment.
FROM python:3.12.4-slim AS builder_base_fleetcare
LABEL [email protected]
LABEL org.opencontainers.image.source=https://github.com/dbca-wa/fleetcare-data-harvest
RUN apt-get update -y \
&& apt-get upgrade -y \
&& apt-get install -y python3-dev libpq-dev gcc \
&& rm -rf /var/lib/apt/lists/* \
&& pip install --root-user-action=ignore --upgrade pip
# Install Python libs using Poetry.
FROM builder_base_fleetcare AS python_libs_fleetcare
WORKDIR /app
ARG POETRY_VERSION=1.8.3
RUN pip install --no-cache-dir --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_fleetcare
COPY fleetcare_data_harvest.py gunicorn.py wsgi.py utils.py ./
USER ${UID}
EXPOSE 8080
CMD ["gunicorn", "wsgi", "--config", "gunicorn.py"]