Set fastapi version to 0.110.2 due to breaking changes in dependencies for arm64 image

This commit is contained in:
totonyus 2024-05-19 10:04:18 +02:00
parent 09ce52dec6
commit 3188d029ff
2 changed files with 2 additions and 2 deletions

View File

@ -6,7 +6,7 @@ WORKDIR /app
ARG GIT_BRANCH=unknown GIT_REVISION=unknown DATE=unknown
ENV UID=1000 GID=1000 GIT_BRANCH=$GIT_BRANCH GIT_REVISION=$GIT_REVISION DATE=$DATE NB_WORKERS=5 LOG_LEVEL="info" DISABLE_REDIS='false'
RUN apt update && apt install ffmpeg dos2unix gcc g++ python3-dev cargo -y && apt-get autoremove && apt-get -y clean && rm -rf /var/lib/apt/lists/*
RUN apt update && apt install ffmpeg dos2unix gcc g++ python3-dev -y && apt-get autoremove && apt-get -y clean && rm -rf /var/lib/apt/lists/*
COPY *.py entrypoint.sh pip_requirements ./
COPY params/*.py params/*.ini params/userscript.js params/hooks_requirements ./setup/

View File

@ -1,4 +1,4 @@
fastapi
fastapi==0.110.2
yt-dlp
uvicorn
psutil