From e5449be38ec5ad0340b4847c8359188fd1257754 Mon Sep 17 00:00:00 2001 From: Ian McEwen Date: Sun, 31 May 2026 16:54:34 -0700 Subject: [PATCH] tryfix container build issue --- Containerfile.alpine | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Containerfile.alpine b/Containerfile.alpine index 1a9d312..053d050 100644 --- a/Containerfile.alpine +++ b/Containerfile.alpine @@ -12,10 +12,13 @@ WORKDIR /tmp/build COPY . /tmp/build RUN _poetry_venv_dir="$(mktemp -d -p "${TMPDIR:-/tmp}" 'poetry_venv.XXXXXX')" && \ + apk add --no-cache libffi && \ + apk add --no-cache --virtual .build-deps build-base libffi-dev && \ python -m 'venv' "${_poetry_venv_dir}" && \ "${_poetry_venv_dir}/bin/pip" install --no-cache-dir 'poetry' && \ "${_poetry_venv_dir}/bin/poetry" config --local virtualenvs.create false && \ "${_poetry_venv_dir}/bin/poetry" install --without dev --extras cli --extras tunnel --no-interaction --no-ansi && \ + apk del .build-deps && \ addgroup -S meshtastic && \ adduser -S -G meshtastic -h /home/meshtastic meshtastic && \ rm -f -r "${_poetry_venv_dir}" && \