You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

73 lines
3.5 KiB

  1. FROM debian:10
  2. # Configuration version history
  3. # v1.0 - Initial version by Etienne Champetier
  4. # v1.0.1 - Run as non-root, add unzip, xz-utils
  5. # v1.0.2 - Add bzr
  6. # v1.0.3 - Verify usign signatures
  7. # v1.0.4 - Add support for Python3
  8. # v1.0.5 - Add 19.07 public keys, verify keys
  9. # v1.0.6 - Add 21.02 public keys, update Debian image to version 10, add rsync
  10. RUN apt update && apt install -y \
  11. build-essential \
  12. bzr \
  13. curl \
  14. jq \
  15. gawk \
  16. gettext \
  17. git \
  18. libncurses5-dev \
  19. libssl-dev \
  20. python \
  21. python3 \
  22. signify-openbsd \
  23. subversion \
  24. rsync \
  25. time \
  26. unzip \
  27. wget \
  28. xz-utils \
  29. zlib1g-dev \
  30. && rm -rf /var/lib/apt/lists/*
  31. RUN useradd -c "OpenWrt Builder" -m -d /home/build -s /bin/bash build
  32. USER build
  33. ENV HOME /home/build
  34. # OpenWrt Build System (PGP key for unattended snapshot builds)
  35. RUN curl 'https://git.openwrt.org/?p=keyring.git;a=blob_plain;f=gpg/626471F1.asc' | gpg --import \
  36. && gpg --fingerprint --with-colons '<pgpsign-snapshots@openwrt.org>' | grep '^fpr:::::::::54CC74307A2C6DC9CE618269CD84BCED626471F1:$' \
  37. && echo '54CC74307A2C6DC9CE618269CD84BCED626471F1:6:' | gpg --import-ownertrust
  38. # OpenWrt Build System (PGP key for 17.01 "Reboot" release builds)
  39. RUN curl 'https://git.openwrt.org/?p=keyring.git;a=blob_plain;f=gpg/D52BBB6B.asc' | gpg --import \
  40. && gpg --fingerprint --with-colons '<pgpsign-17.01@openwrt.org>' | grep '^fpr:::::::::B09BE781AE8A0CD4702FDCD3833C6010D52BBB6B:$' \
  41. && echo 'B09BE781AE8A0CD4702FDCD3833C6010D52BBB6B:6:' | gpg --import-ownertrust
  42. # OpenWrt Release Builder (18.06 Signing Key)
  43. RUN curl 'https://git.openwrt.org/?p=keyring.git;a=blob_plain;f=gpg/17E1CE16.asc' | gpg --import \
  44. && gpg --fingerprint --with-colons '<openwrt-devel@lists.openwrt.org>' | grep '^fpr:::::::::6768C55E79B032D77A28DA5F0F20257417E1CE16:$' \
  45. && echo '6768C55E79B032D77A28DA5F0F20257417E1CE16:6:' | gpg --import-ownertrust
  46. # OpenWrt Build System (PGP key for 19.07 release builds)
  47. RUN curl 'https://git.openwrt.org/?p=keyring.git;a=blob_plain;f=gpg/2074BE7A.asc' | gpg --import \
  48. && gpg --fingerprint --with-colons '<pgpsign-19.07@openwrt.org>' | grep '^fpr:::::::::D9C6901F45C9B86858687DFF28A39BC32074BE7A:$' \
  49. && echo 'D9C6901F45C9B86858687DFF28A39BC32074BE7A:6:' | gpg --import-ownertrust
  50. # OpenWrt Build System (PGP key for 21.02 release builds)
  51. RUN curl 'https://git.openwrt.org/?p=keyring.git;a=blob_plain;f=gpg/88CA59E8.asc' | gpg --import \
  52. && gpg --fingerprint --with-colons '<pgpsign-21.02@openwrt.org>' | grep '^fpr:::::::::667205E379BAF348863A5C6688CA59E88F681580:$' \
  53. && echo '667205E379BAF348863A5C6688CA59E88F681580:6:' | gpg --import-ownertrust
  54. # untrusted comment: Public usign key for unattended snapshot builds
  55. RUN curl 'https://git.openwrt.org/?p=keyring.git;a=blob_plain;f=usign/b5043e70f9a75cde' --create-dirs -o /home/build/usign/b5043e70f9a75cde \
  56. && echo 'd7ac10f9ed1b38033855f3d27c9327d558444fca804c685b17d9dcfb0648228f */home/build/usign/b5043e70f9a75cde' | sha256sum --check
  57. # untrusted comment: Public usign key for 19.07 release builds
  58. RUN curl 'https://git.openwrt.org/?p=keyring.git;a=blob_plain;f=usign/f94b9dd6febac963' --create-dirs -o /home/build/usign/f94b9dd6febac963 \
  59. && echo 'b1d09457cfbc36fccfe18382d65c54a2ade3e7fd3902da490a53aa517b512755 */home/build/usign/f94b9dd6febac963' | sha256sum --check
  60. # untrusted comment: Public usign key for 21.02 release builds
  61. RUN curl 'https://git.openwrt.org/?p=keyring.git;a=blob_plain;f=usign/2f8b0b98e08306bf' --create-dirs -o /home/build/usign/2f8b0b98e08306bf && echo 'd102bdd75421c62490b97f520f9db06aadb44ad408b244755d26e96ea5cd3b7f */home/build/usign/2f8b0b98e08306bf' | sha256sum --check