mirror of
https://github.com/dani-garcia/vaultwarden.git
synced 2025-05-12 14:43:56 +00:00
Fix armv7 alpine build.
The `messense/rust-musl-cross` has removed OpenSSL in favor of the vendored option. Enabled vendored openssl to resolve this. Resolves #1807
This commit is contained in:
parent
72e1946ce5
commit
18703bf195
2 changed files with 4 additions and 2 deletions
|
@ -75,7 +75,8 @@ ARG DB=sqlite,postgresql
|
|||
{% set features = "sqlite,postgresql" %}
|
||||
{% else %}
|
||||
# Alpine-based ARM (musl) only supports sqlite during compile time.
|
||||
ARG DB=sqlite
|
||||
# We now also need to add vendored_openssl, because the current base image we use to build has OpenSSL removed.
|
||||
ARG DB=sqlite,vendored_openssl
|
||||
{% set features = "sqlite" %}
|
||||
{% endif %}
|
||||
{% else %}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue