Update Dockerfile to allow build via docker-compose on arm architectures

As stated in issue #5638 the installation via docker-compose fails on arm architectures since two librariers are not correctly installed. This is fixed by installing those manually in the /server/docker/Dockerfile
This commit is contained in:
simonla82 2020-10-21 20:05:07 +02:00 committed by Finn Stutzenstein
parent 266f9b73e9
commit 5502e5337a
No known key found for this signature in database
GPG Key ID: 9042F605C6324654
1 changed files with 3 additions and 1 deletions

View File

@ -29,7 +29,9 @@ RUN apt-get -y update && apt-get -y upgrade && \
rsync \
wait-for-it \
wget \
xz-utils
xz-utils \
zlib1g-dev \
libffi-dev # install of zlib1g-dev and libffi-dev is required on armhf architectures
# Install additional tools
RUN apt-get install --no-install-recommends -y \