1
0
mirror of https://github.com/mailcow/mailcow-dockerized.git synced 2025-12-19 21:01:31 +00:00

Add psutil module for bootstrapping

This commit is contained in:
FreddleSpl0it
2025-05-23 09:47:25 +02:00
parent f35def48cb
commit 5f93ff04a9
8 changed files with 39 additions and 10 deletions

View File

@@ -108,6 +108,14 @@ RUN apk add -U --no-cache autoconf \
pcre-dev \
zlib-dev
RUN apk add --no-cache --virtual .build-deps \
gcc \
musl-dev \
python3-dev \
linux-headers \
&& pip install --break-system-packages psutil \
&& apk del .build-deps
RUN pip install --break-system-packages \
mysql-connector-python \
jinja2 \