-
Notifications
You must be signed in to change notification settings - Fork 46
/
Dockerfile
60 lines (52 loc) · 1.92 KB
/
Dockerfile
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
########################################################################################
# Stage 1: Dependency Builder
#
# This stage is responsible for building the ecowitt2mqtt package and its dependencies.
########################################################################################
FROM python:3.11-alpine as builder
ARG TARGETPLATFORM
# Set up the build environment:
ENV CRYPTOGRAPHY_VERSION=41.0.5 \
PIP_DEFAULT_TIMEOUT=100 \
PIP_DISABLE_PIP_VERSION_CHECK=1 \
PIP_NO_CACHE_DIR=1 \
PIP_PREFER_BINARY=1 \
POETRY_VERSION=1.7.1 \
PYTHONFAULTHANDLER=1 \
PYTHONHASHSEED=random \
PYTHONUNBUFFERED=1
WORKDIR /app
# Add base libraries:
SHELL ["/bin/ash", "-o", "pipefail", "-c"]
RUN apk add --no-cache \
bash \
build-base \
libffi-dev \
python3-dev
# Add poetry and build dependencies:
COPY . .
RUN printf "[global]\nextra-index-url=https://www.piwheels.org/simple\n" > /etc/pip.conf \
&& pip install --upgrade pip \
&& pip install cryptography==${CRYPTOGRAPHY_VERSION} \
&& pip install poetry==${POETRY_VERSION} \
&& python3 -m venv /venv
RUN poetry export --without-hashes -f requirements.txt --only main \
| /venv/bin/pip install -r /dev/stdin \
&& poetry build \
&& /venv/bin/pip install dist/*.whl
########################################################################################
# Stage 2: Final
#
# This stage is responsible for building the final image.
########################################################################################
FROM python:3.11-alpine as final
ARG TARGETPLATFORM
# Copy the virtual environment from the builder image:
COPY --from=builder /venv /venv
ENV VIRTUAL_ENV="/venv"
ENV PATH="${VIRTUAL_ENV}/bin:${PATH}"
# Add ecowitt2mqtt user and group:
RUN addgroup -g 1000 -S ecowitt2mqtt && adduser -u 1000 -S ecowitt2mqtt -G ecowitt2mqtt
RUN chown -R ecowitt2mqtt:ecowitt2mqtt ${VIRTUAL_ENV}
USER 1000
CMD ["ecowitt2mqtt"]