mirror of
https://github.com/dani-garcia/vaultwarden.git
synced 2025-05-18 09:33:56 +00:00
Fix armv6 issue with bullseye images
It looks like the armv6 bullseye images are missing a symlink to the dynamic linker. The previous buster images had this symlink there, bullseye does not. This PR fixes adds that symlink again for only the Debian armv6 build. Resolves #2490
This commit is contained in:
parent
0d3daa9fc6
commit
21b433c5d7
3 changed files with 18 additions and 6 deletions
|
@ -129,6 +129,11 @@ RUN mkdir /data \
|
|||
&& apt-get clean \
|
||||
&& rm -rf /var/lib/apt/lists/*
|
||||
|
||||
# In the Balena Bullseye images for armv6/rpi-debian there is a missing symlink.
|
||||
# This symlink was there in the buster images, and for some reason this is needed.
|
||||
# hadolint ignore=DL3059
|
||||
RUN ln -v -s /lib/ld-linux-armhf.so.3 /lib/ld-linux.so.3
|
||||
|
||||
# hadolint ignore=DL3059
|
||||
RUN [ "cross-build-end" ]
|
||||
|
||||
|
|
|
@ -129,6 +129,11 @@ RUN mkdir /data \
|
|||
&& apt-get clean \
|
||||
&& rm -rf /var/lib/apt/lists/*
|
||||
|
||||
# In the Balena Bullseye images for armv6/rpi-debian there is a missing symlink.
|
||||
# This symlink was there in the buster images, and for some reason this is needed.
|
||||
# hadolint ignore=DL3059
|
||||
RUN ln -v -s /lib/ld-linux-armhf.so.3 /lib/ld-linux.so.3
|
||||
|
||||
# hadolint ignore=DL3059
|
||||
RUN [ "cross-build-end" ]
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue