Skip to content

Commit

Permalink
Fix path to strip binary in linux-armv6
Browse files Browse the repository at this point in the history
Closes #20.
  • Loading branch information
vweevers committed Aug 1, 2021
1 parent 5c35ae4 commit faa0898
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 1 deletion.
1 change: 1 addition & 0 deletions android-arm64/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ RUN apt-get -y update && \
apt-get -y update && \
apt-get -y install nodejs && \
npm -v && \
test -f ${CROSS_ROOT}/bin/${CROSS_TRIPLE}-strip && \
rm -rf /var/lib/apt/lists/*

USER node
Expand Down
1 change: 1 addition & 0 deletions android-armv7/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ RUN apt-get -y update && \
apt-get -y update && \
apt-get -y install nodejs && \
npm -v && \
test -f ${CROSS_ROOT}/bin/${CROSS_TRIPLE}-strip && \
rm -rf /var/lib/apt/lists/*

USER node
Expand Down
1 change: 1 addition & 0 deletions linux-arm64/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ RUN apt-get -y update && \
apt-get -y update && \
apt-get -y install nodejs && \
npm -v && \
test -f ${CROSS_ROOT}/bin/${CROSS_TRIPLE}-strip && \
rm -rf /var/lib/apt/lists/*

USER node
Expand Down
3 changes: 2 additions & 1 deletion linux-armv6/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,12 @@ RUN apt-get -y update && \
apt-get -y update && \
apt-get -y install nodejs && \
npm -v && \
test -f ${CROSS_ROOT}/bin/${CROSS_TRIPLE}-strip && \
rm -rf /var/lib/apt/lists/*

USER node

ENV PREBUILD_STRIP_BIN ${CROSS_ROOT}/bin/strip
ENV PREBUILD_STRIP_BIN ${CROSS_ROOT}/bin/${CROSS_TRIPLE}-strip
ENV PREBUILD_ARCH arm
ENV PREBUILD_ARMV 6
ENV PREBUILD_PLATFORM linux
Expand Down
1 change: 1 addition & 0 deletions linux-armv7/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ RUN apt-get -y update && \
apt-get -y update && \
apt-get -y install nodejs && \
npm -v && \
test -f ${CROSS_ROOT}/bin/${CROSS_TRIPLE}-strip && \
rm -rf /var/lib/apt/lists/*

USER node
Expand Down

0 comments on commit faa0898

Please sign in to comment.