Skip to content

Commit

Permalink
need to hard code arch for base images
Browse files Browse the repository at this point in the history
  • Loading branch information
binhex committed May 1, 2020
1 parent 744f3de commit 7d4799b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build/root/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -129,11 +129,11 @@ chsh -s /bin/bash nobody
# delme once fixed!!
# force downgrade of coreutils - fixes permission denied issue when building on docker hub
# https://github.com/archlinux/archlinux-docker/issues/32
curl --connect-timeout 5 --max-time 600 --retry 5 --retry-delay 0 --retry-max-time 60 -o /tmp/coreutils.tar.xz -L "https://github.com/binhex/arch-packages/raw/master/compiled/${OS_ARCH}/coreutils.tar.xz"
curl --connect-timeout 5 --max-time 600 --retry 5 --retry-delay 0 --retry-max-time 60 -o /tmp/coreutils.tar.xz -L "https://github.com/binhex/arch-packages/raw/master/compiled/x86-64/coreutils.tar.xz"
pacman -U /tmp/coreutils.tar.xz --noconfirm

# force re-install of ncurses 6.x with 5.x backwards compatibility (can be removed once all apps have switched over to ncurses 6.x)
curl --connect-timeout 5 --max-time 600 --retry 5 --retry-delay 0 --retry-max-time 60 -o /tmp/ncurses5-compat.tar.xz -L "https://github.com/binhex/arch-packages/raw/master/compiled/${OS_ARCH}/ncurses5-compat-libs.tar.xz"
curl --connect-timeout 5 --max-time 600 --retry 5 --retry-delay 0 --retry-max-time 60 -o /tmp/ncurses5-compat.tar.xz -L "https://github.com/binhex/arch-packages/raw/master/compiled/x86-64/ncurses5-compat-libs.tar.xz"
pacman -U /tmp/ncurses5-compat.tar.xz --noconfirm

# find latest tini release tag from github
Expand Down

0 comments on commit 7d4799b

Please sign in to comment.