# SPDX-FileCopyrightText: 2021 WTF Kooperative eG # # SPDX-License-Identifier: AGPL-3.0-or-later FROM python:3.11.7-alpine as base ENV PYROOT /pyroot ENV PYTHONUSERBASE $PYROOT FROM base as builder RUN apk add --no-cache \ gcc \ g++ \ musl-dev \ python3-dev && \ pip3 install pipenv