File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -15,17 +15,16 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
1515 curl \
1616 gnupg \
1717 git \
18+ && curl -fsSL https://deb.nodesource.com/setup_lts.x | bash - \
19+ && apt-get install -y --no-install-recommends nodejs \
1820 && apt-get clean \
1921 && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
2022
21- RUN apt-get update && apt-get install -y curl gnupg \
22- && curl -fsSL https://deb.nodesource.com/setup_lts.x | bash - \
23- && apt-get install -y nodejs
24-
2523RUN python -m pip install uv \
26- && echo "3.12" > .python-version
27- RUN uv pip install -r requirements.txt --no-cache-dir --system
28- RUN uv pip install socksio uv pilk --no-cache-dir --system
24+ && echo "3.12" > .python-version \
25+ && uv export --format requirements.txt --output-file requirements.txt --frozen \
26+ && uv pip install -r requirements.txt --no-cache-dir --system \
27+ && uv pip install socksio uv pilk --no-cache-dir --system
2928
3029EXPOSE 6185
3130
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ pillow>=11.2.1
2929pip >= 25.1.1
3030psutil >= 5.8.0 ,< 7.2.0
3131py-cord >= 2.6.1
32- pydantic ~ =2.10.3
32+ pydantic > =2.12.5
3333pydub >= 0.25.1
3434pyjwt >= 2.10.1
3535python-telegram-bot >= 22.0
You can’t perform that action at this time.
0 commit comments