build,circleci: add curl & wget to base image
curl was present in latest image but seems to have been remove from latest debian:9 Signed-off-by: Etienne Champetier <champetier.etienne@gmail.com>
This commit is contained in:
parent
e792bbd84e
commit
c3c3252ab5
2 changed files with 3 additions and 1 deletions
|
@ -2,6 +2,7 @@ FROM debian:9
|
||||||
|
|
||||||
RUN apt update && apt install -y \
|
RUN apt update && apt install -y \
|
||||||
build-essential \
|
build-essential \
|
||||||
|
curl \
|
||||||
jq \
|
jq \
|
||||||
gawk \
|
gawk \
|
||||||
gettext \
|
gettext \
|
||||||
|
@ -11,6 +12,7 @@ libssl-dev \
|
||||||
python \
|
python \
|
||||||
subversion \
|
subversion \
|
||||||
time \
|
time \
|
||||||
|
wget \
|
||||||
zlib1g-dev \
|
zlib1g-dev \
|
||||||
&& rm -rf /var/lib/apt/lists/*
|
&& rm -rf /var/lib/apt/lists/*
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,7 @@ version: 2.0
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
docker:
|
docker:
|
||||||
- image: champtar/openwrtpackagesci@sha256:d46da22bc628f4b369147eebfa1b032e4066510da42a073b22acbf6b6595b77f
|
- image: docker.io/champtar/openwrtpackagesci@sha256:96ef72edc70cba371ea5676fba15ee25b3a94f538f648a27454b699edce61da0
|
||||||
environment:
|
environment:
|
||||||
- SDK_BASE_URL: "https://downloads.openwrt.org/snapshots/targets/ar71xx/generic"
|
- SDK_BASE_URL: "https://downloads.openwrt.org/snapshots/targets/ar71xx/generic"
|
||||||
- SDK_FILE: "openwrt-sdk-ar71xx-generic_gcc-7.3.0_musl.Linux-x86_64.tar.xz"
|
- SDK_FILE: "openwrt-sdk-ar71xx-generic_gcc-7.3.0_musl.Linux-x86_64.tar.xz"
|
||||||
|
|
Loading…
Reference in a new issue