Skip to content

Commit

Permalink
fix paths
Browse files Browse the repository at this point in the history
  • Loading branch information
binhex committed Sep 18, 2023
1 parent 9d972c4 commit 03c6cfe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ ARG TARGETARCH
ADD build/common/*.conf /etc/supervisor.conf

# add install bash script
ADD build/common/root/*.sh /root/
ADD build/common/root/*.sh /bootstrap/

# add statically linked busybox for target arch
ADD build/${TARGETARCH}/utils/busybox/busybox /bootstrap/busybox
Expand Down
2 changes: 1 addition & 1 deletion build/common/root/bootstrap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ else
fi

# download tarball, note busybox wget does not support SSL
/bootstrap/sh -c "/bootstrap/wget --timeout=60 -O /bootstrap/archlinux.tar.gz ${url} && /bootstrap/tar --exclude=${exclude}/etc/resolv.conf --exclude=${exclude}/etc/hosts -xvf /bootstrap/archlinux.tar.gz ${strip} -C / && /bin/bash -c 'chmod +x /root/*.sh && /bin/bash /root/install.sh ${TARGETARCH}'"
/bootstrap/sh -c "/bootstrap/wget --timeout=60 -O /bootstrap/archlinux.tar.gz ${url} && /bootstrap/tar --exclude=${exclude}/etc/resolv.conf --exclude=${exclude}/etc/hosts -xvf /bootstrap/archlinux.tar.gz ${strip} -C / && /bin/bash -c 'chmod +x /bootstrap/*.sh && /bin/bash /bootstrap/install.sh ${TARGETARCH}'"

0 comments on commit 03c6cfe

Please sign in to comment.