fix: deps python 3.13
Some checks failed
ci/woodpecker/push/woodpecker Pipeline was successful
ci/woodpecker/cron/woodpecker Pipeline failed

This commit is contained in:
nyyu 2024-10-09 08:33:12 +02:00
parent 3dd850d7b1
commit 93902ce55e

View File

@ -11,7 +11,7 @@ RUN \
rm -f 7zip*.apk && \
echo "**** install packages ****" && \
apk add --no-cache --virtual=build-dependencies \
gcc musl-dev \
gcc git musl-dev \
curl-dev && \
apk add --no-cache \
shadow \
@ -22,7 +22,7 @@ RUN \
if [[ -n "${VERSION}" && "${VERSION}" != "dev" ]]; then \
PYLOAD="pyload-ng[all]==${VERSION}"; \
fi && \
pip3 install --no-cache-dir --break-system-packages -U "${PYLOAD}" && \
pip3 install --no-cache-dir --break-system-packages -U "git+https://github.com/edgarrmondragon/msgspec.git@py313" legacy-cgi "${PYLOAD}" && \
apk del --purge \
build-dependencies && \
echo "**** add user abc ****" && \