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.

42 lines
1.2 KiB

  1. FROM debian:9
  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. RUN apt update && apt install -y \
  7. build-essential \
  8. curl \
  9. jq \
  10. gawk \
  11. gettext \
  12. git \
  13. libncurses5-dev \
  14. libssl-dev \
  15. python \
  16. subversion \
  17. bzr \
  18. time \
  19. wget \
  20. zlib1g-dev \
  21. unzip \
  22. xz-utils \
  23. && rm -rf /var/lib/apt/lists/*
  24. RUN useradd -c "OpenWrt Builder" -m -d /home/build -s /bin/bash build
  25. USER build
  26. ENV HOME /home/build
  27. # LEDE Build System (LEDE GnuPG key for unattended build jobs)
  28. RUN curl 'https://git.openwrt.org/?p=keyring.git;a=blob_plain;f=gpg/626471F1.asc' | gpg --import \
  29. && echo '54CC74307A2C6DC9CE618269CD84BCED626471F1:6:' | gpg --import-ownertrust
  30. # LEDE Release Builder (17.01 "Reboot" Signing Key)
  31. RUN curl 'https://git.openwrt.org/?p=keyring.git;a=blob_plain;f=gpg/D52BBB6B.asc' | gpg --import \
  32. && echo 'B09BE781AE8A0CD4702FDCD3833C6010D52BBB6B:6:' | gpg --import-ownertrust
  33. # OpenWrt Release Builder (18.06 Signing Key)
  34. RUN curl 'https://git.openwrt.org/?p=keyring.git;a=blob_plain;f=gpg/17E1CE16.asc' | gpg --import \
  35. && echo '6768C55E79B032D77A28DA5F0F20257417E1CE16:6:' | gpg --import-ownertrust