mirror of
https://github.com/dani-garcia/vaultwarden.git
synced 2025-07-17 09:41:07 +00:00
Move rustup target
before cargo build
. Thanks to @dani-garcia!
Note from @dani-garcia: > I don't think this is doing anything right now because the target is probably > installed already.
This commit is contained in:
parent
7a0bb18dcf
commit
43adcde094
6 changed files with 17 additions and 13 deletions
|
@ -47,6 +47,8 @@ COPY ./Cargo.* ./
|
|||
COPY ./rust-toolchain ./rust-toolchain
|
||||
COPY ./build.rs ./build.rs
|
||||
|
||||
RUN rustup target add x86_64-unknown-linux-musl
|
||||
|
||||
# Builds your dependencies and removes the
|
||||
# dummy project, except the target folder
|
||||
# This folder contains the compiled dependencies
|
||||
|
@ -60,8 +62,6 @@ COPY . .
|
|||
# Make sure that we actually build the project
|
||||
RUN touch src/main.rs
|
||||
|
||||
RUN rustup target add x86_64-unknown-linux-musl
|
||||
|
||||
# Builds again, this time it'll just be
|
||||
# your actual source files being built
|
||||
RUN cargo build --features ${DB} --release
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue