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.

27 lines
904 B

  1. FROM debian:9
  2. RUN apt update && apt install -y \
  3. build-essential \
  4. jq \
  5. gawk \
  6. gettext \
  7. git \
  8. libncurses5-dev \
  9. libssl-dev \
  10. python \
  11. subversion \
  12. time \
  13. zlib1g-dev \
  14. && rm -rf /var/lib/apt/lists/*
  15. # LEDE Build System (LEDE GnuPG key for unattended build jobs)
  16. RUN curl 'https://git.openwrt.org/?p=keyring.git;a=blob_plain;f=gpg/626471F1.asc' | gpg --import \
  17. && echo '54CC74307A2C6DC9CE618269CD84BCED626471F1:6:' | gpg --import-ownertrust
  18. # LEDE Release Builder (17.01 "Reboot" Signing Key)
  19. RUN curl 'https://git.openwrt.org/?p=keyring.git;a=blob_plain;f=gpg/D52BBB6B.asc' | gpg --import \
  20. && echo 'B09BE781AE8A0CD4702FDCD3833C6010D52BBB6B:6:' | gpg --import-ownertrust
  21. # OpenWrt Release Builder (18.06 Signing Key)
  22. RUN curl 'https://git.openwrt.org/?p=keyring.git;a=blob_plain;f=gpg/17E1CE16.asc' | gpg --import \
  23. && echo '6768C55E79B032D77A28DA5F0F20257417E1CE16:6:' | gpg --import-ownertrust