1
0
Fork 0
mirror of https://github.com/dani-garcia/vaultwarden.git synced 2025-06-04 18:13:58 +00:00

Fix broken rebase

This commit is contained in:
Nick Fox 2018-12-15 22:45:39 -05:00
parent 4910b14d57
commit e245e965ba
No known key found for this signature in database
GPG key ID: 82719985805A7CA8
2 changed files with 6 additions and 1 deletions

View file

@ -20,7 +20,7 @@ RUN ls
########################## BUILD IMAGE ##########################
# Musl build image for statically compiled binary
FROM clux/muslrust:nightly-2018-11-30 as build
FROM clux/muslrust:nightly-2018-12-01 as build
ENV USER "root"
@ -30,6 +30,8 @@ WORKDIR /app
# To avoid copying unneeded files, use .dockerignore
COPY . .
RUN rustup target add x86_64-unknown-linux-musl
# Build
RUN cargo build --release