mirror of
https://github.com/dani-garcia/vaultwarden.git
synced 2025-05-29 06:53:57 +00:00
Make cargo new
independent of workdir to be exact
The muslrust images seem to have a workdir of /volume as opposed to / in the others so doing cargo new like this would create the folder in /volume/app.
This commit is contained in:
parent
47a5a4e1fc
commit
7a0bb18dcf
13 changed files with 13 additions and 13 deletions
|
@ -38,7 +38,7 @@ ARG DB=sqlite
|
|||
RUN rustup set profile minimal
|
||||
|
||||
# Creates a dummy project used to grab dependencies
|
||||
RUN USER=root cargo new --bin app
|
||||
RUN USER=root cargo new --bin /app
|
||||
WORKDIR /app
|
||||
|
||||
# Copies over *only* your manifests and build files
|
||||
|
|
|
@ -33,7 +33,7 @@ RUN rustup set profile minimal
|
|||
ENV USER "root"
|
||||
|
||||
# Creates a dummy project used to grab dependencies
|
||||
RUN USER=root cargo new --bin app
|
||||
RUN USER=root cargo new --bin /app
|
||||
WORKDIR /app
|
||||
|
||||
# Copies over *only* your manifests and build files
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue