fixes for arm64
All checks were successful
ci/woodpecker/push/tests Pipeline was successful
ci/woodpecker/pr/tests Pipeline was successful
ci/woodpecker/pr/build_docker Pipeline was successful

This commit is contained in:
Ivan Schaller 2022-05-16 17:07:34 +02:00
parent 7624e29160
commit a6a8d4d8df
4 changed files with 6 additions and 4 deletions

View file

@ -16,7 +16,7 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
- Detection of files. Now it will skip them again - Detection of files. Now it will skip them again
### Added ### Added
- Ability to save the chapters as pdf - Ability to save the chapters as pdf (only on amd64/x86)
- New output formats: rar, zip - New output formats: rar, zip
- Progress bar to show image download - Progress bar to show image download
- Interactive input if no command line flags are given - Interactive input if no command line flags are given

View file

@ -40,6 +40,5 @@ COPY manga-dlp.py \
# install requirements # install requirements
RUN pip install -r /app/requirements.txt RUN pip install -r /app/requirements.txt
RUN pip install img2pdf
WORKDIR /app WORKDIR /app

View file

@ -38,8 +38,9 @@ COPY manga-dlp.py \
/app/ /app/
# install requirements # install requirements (without img2pdf)
RUN pip install -r /app/requirements.txt RUN grep -v img2pdf /app/requirements.txt > /app/requirements-arm64.txt
RUN pip install -r /app/requirements-arm64.txt
WORKDIR /app WORKDIR /app

View file

@ -1 +1,3 @@
requests>=2.24.0 requests>=2.24.0
img2pdf>=0.4.4