bitwarden_rs_ldap/Dockerfile
ViViDboarder b04ee3a60a Update rust to 1.46
Should add support for TLS 1.3

Also, this fixes the Alpine builds
2020-09-28 14:58:23 -07:00

18 lines
388 B
Docker

FROM rust:1.46
WORKDIR /usr/src/
RUN USER=root cargo new --bin bitwarden_rs_ldap
WORKDIR /usr/src/bitwarden_rs_ldap
# Compile dependencies
COPY Cargo.toml Cargo.lock ./
RUN cargo build --locked --release
# Remove bins to make sure we rebuild
RUN rm ./target/release/deps/bitwarden_rs_ldap*
# Copy source and install
COPY src ./src
RUN cargo install --path .
CMD ["bitwarden_rs_ldap"]