Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion glibc/Dockerfile.builder
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ RUN set -eux; \

# download a few extra files from buildroot (/etc/passwd, etc)
RUN set -eux; \
buildrootVersion='2020.02.1'; \
buildrootVersion='2020.02.2'; \
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"; \
Expand Down
2 changes: 1 addition & 1 deletion musl/Dockerfile.builder
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ RUN set -eux; \

# download a few extra files from buildroot (/etc/passwd, etc)
RUN set -eux; \
buildrootVersion='2020.02.1'; \
buildrootVersion='2020.02.2'; \
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"; \
Expand Down
2 changes: 1 addition & 1 deletion uclibc/Dockerfile.builder
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,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 2020.02.1
ENV BUILDROOT_VERSION 2020.02.2

RUN set -eux; \
tarball="buildroot-${BUILDROOT_VERSION}.tar.bz2"; \
Expand Down