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:
parent
266f9b73e9
commit
5502e5337a
@ -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 \
|
||||
|
Loading…
Reference in New Issue
Block a user