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