1
0
Fork 0
mirror of https://github.com/dani-garcia/vaultwarden.git synced 2025-10-21 17:01:14 +00:00

Readd missing cargo build for armv7. Thanks to @dani-garcia!

This commit is contained in:
Robin Schneider 2020-01-01 15:44:03 +01:00
commit def858854b
No known key found for this signature in database
GPG key ID: A81E8006DC95EFE6
3 changed files with 4 additions and 0 deletions

View file

@ -228,6 +228,8 @@ RUN cargo build --features ${DB} --release
RUN cargo build --features ${DB} --release --target=aarch64-unknown-linux-gnu
{% elif "armv6" in target_file %}
RUN cargo build --features ${DB} --release --target=arm-unknown-linux-gnueabi
{% elif "armv7" in target_file %}
RUN cargo build --features ${DB} --release --target=armv7-unknown-linux-gnueabihf
{% endif %}
######################## RUNTIME IMAGE ########################