bitwarden_rs_ldap/Dockerfile

9 lines
103 B
Docker
Raw Normal View History

FROM rust:1.33
WORKDIR /usr/src/myapp
COPY . .
RUN cargo install --path .
CMD ["bitwarden_rs_ldap"]