Update Alpine to 3.9, Buildroot to 2019.02.1

Closes #59
This commit is contained in:
Tianon Gravi 2019-04-01 16:52:16 -07:00
parent f7661b44be
commit 80983244a3
3 changed files with 4 additions and 4 deletions

View File

@ -116,7 +116,7 @@ RUN set -ex \
# download a few extra files from buildroot (/etc/passwd, etc)
RUN set -ex; \
buildrootVersion='2018.11.2'; \
buildrootVersion='2019.02.1'; \
mkdir -p rootfs/etc; \
for f in passwd shadow group; do \
curl -fL -o "rootfs/etc/$f" "https://git.busybox.net/buildroot/plain/system/skeleton/etc/$f?id=$buildrootVersion"; \

View File

@ -1,4 +1,4 @@
FROM alpine:3.8
FROM alpine:3.9
RUN apk add --no-cache \
bzip2 \
@ -103,7 +103,7 @@ RUN set -x \
# download a few extra files from buildroot (/etc/passwd, etc)
RUN set -ex; \
buildrootVersion='2018.11.2'; \
buildrootVersion='2019.02.1'; \
mkdir -p rootfs/etc; \
for f in passwd shadow group; do \
curl -fL -o "rootfs/etc/$f" "https://git.busybox.net/buildroot/plain/system/skeleton/etc/$f?id=$buildrootVersion"; \

View File

@ -30,7 +30,7 @@ RUN gpg --batch --keyserver ha.pool.sks-keyservers.net --recv-keys AB07D806D2CE7
# https://buildroot.org/download.html
# https://buildroot.org/downloads/?C=M;O=D
ENV BUILDROOT_VERSION 2018.11.2
ENV BUILDROOT_VERSION 2019.02.1
RUN set -ex; \
tarball="buildroot-${BUILDROOT_VERSION}.tar.bz2"; \