Update Dockerfile.alpine to pass hadolint

This commit is contained in:
ViViDboarder 2021-06-13 19:50:05 -07:00
parent 13e0775d56
commit 80a16664e8
1 changed files with 6 additions and 8 deletions

View File

@ -1,18 +1,16 @@
FROM ekidd/rust-musl-builder:1.46.0 AS builder
WORKDIR /home/rust/src
# Cache build deps
RUN USER=rust cargo init
COPY Cargo.toml Cargo.lock ./
RUN cargo build --locked --release
RUN cargo build --locked --release && \
rm src/*.rs
# Remove temp src
RUN rm src/*.rs
# Remove bins to make sure we rebuild
# RUN rm ./target/release/deps/vaultwarden_ldap*
COPY --chown=rust:rust ./src ./src
RUN touch ./src/main.rs
RUN cargo build --release
RUN touch ./src/main.rs && \
cargo build --release
FROM alpine:3
RUN apk --no-cache add ca-certificates=20191127-r5