mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-11-25 02:10:22 -06:00
Include lib for arm
This commit is contained in:
parent
e4a95e55ed
commit
21ddbd220a
@ -3,6 +3,15 @@
|
||||
# build image
|
||||
echo "$DOCKER_PASSWORD" | docker login -u "$DOCKER_USERNAME" --password-stdin
|
||||
|
||||
# get qemu-arm-static binary
|
||||
if [ "$TRAVIS_BRANCH" != "amd64" ]; then
|
||||
mkdir tmp
|
||||
pushd tmp && \
|
||||
curl -L -o qemu-arm-static.tar.gz https://github.com/multiarch/qemu-user-static/releases/download/v2.6.0/qemu-arm-static.tar.gz && \
|
||||
tar xzf qemu-arm-static.tar.gz && \
|
||||
popd
|
||||
fi
|
||||
|
||||
# build develop
|
||||
if [ "$TRAVIS_BRANCH" == "develop" ]; then
|
||||
echo "Build develop $ARCH"
|
||||
|
@ -1,6 +1,6 @@
|
||||
FROM arm32v7/php:7.2.8-apache-stretch
|
||||
ARG TARGETPLATFORM
|
||||
#COPY tmp/qemu-arm-static /usr/bin/qemu-arm-static
|
||||
COPY tmp/qemu-arm-static /usr/bin/qemu-arm-static
|
||||
ENV FIREFLY_PATH=/var/www/firefly-iii COMPOSER_ALLOW_SUPERUSER=1
|
||||
LABEL version="1.3" maintainer="thegrumpydictator@gmail.com"
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
FROM arm32v7/php:7.2.8-apache-stretch
|
||||
ARG TARGETPLATFORM
|
||||
#COPY tmp/qemu-arm-static /usr/bin/qemu-arm-static
|
||||
COPY tmp/qemu-arm-static /usr/bin/qemu-arm-static
|
||||
ENV FIREFLY_PATH=/var/www/firefly-iii COMPOSER_ALLOW_SUPERUSER=1
|
||||
LABEL version="1.3" maintainer="thegrumpydictator@gmail.com"
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user