File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -30,6 +30,8 @@ deb: dist/qr-backup-${VERSION}.tar.gz
3030 cd dist/debian && tar xf qr-backup_${VERSION} .orig.tar.gz
3131 cp -lr installers/debian dist/debian/qr-backup-${VERSION} /debian
3232 cd dist/debian/qr-backup-${VERSION} && debuild -us -uc
33+ docker :
34+ docker build -f installers/Dockerfile -t za3k/qr-backup:${VERSION} .
3335clean :
3436 rm -rf dist deb_test
3537install :
Original file line number Diff line number Diff line change 44- Added continuous integration
55- Fixed bugs
66 - Corrected return code when --check-restore is enabled [(PR #51)](https://github.com/za3k/qr-backup/pull/61)
7- - Updated debian package
7+ - Support Debian 13 release. Updated debian package, docker package.
88
99v1.1.4, 2025-03-24
1010- Improved note display
Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ Additional thanks to many contributors.
55People who provided code:
66
77- [ Antoine Beaupré] ( https://github.com/anarcat ) , debian packaging; notes
8+ - [ Chris Barry] ( https://github.com/chris-barry ) , docker bugfix
89- [ Julian Rüth] ( https://github.com/saraedum ) , bugfix
910- [ Summer Tea] ( https://github.com/acuteaangle ) , nix packaging; continuous integration
1011- [ tenzap] ( https://github.com/tenzap ) , debian packaging
Original file line number Diff line number Diff line change 1- FROM python:3.12
1+ FROM python:3.12-trixie
22
33RUN apt-get update \
44 && apt-get install -y \
@@ -16,7 +16,7 @@ RUN apt-get update \
1616 python3-reedsolo \
1717 && apt-get autopurge -y \
1818 && apt-get autoclean -y \
19- && sed -i 's/<policy domain="coder" rights="none" pattern="PDF" \/ >/<policy domain="coder" rights="read|write" pattern="PDF" \/ >/g' /etc/ImageMagick-6 /policy.xml
19+ && sed -i 's/<policy domain="coder" rights="none" pattern="PDF" \/ >/<policy domain="coder" rights="read|write" pattern="PDF" \/ >/g' /etc/ImageMagick-7 /policy.xml
2020
2121COPY ./requirements.txt /src/
2222
You can’t perform that action at this time.
0 commit comments