mirror of
https://github.com/ViViDboarder/bitwarden_rs_ldap.git
synced 2024-11-21 18:56:27 +00:00
9 lines
103 B
Docker
9 lines
103 B
Docker
|
FROM rust:1.33
|
||
|
|
||
|
WORKDIR /usr/src/myapp
|
||
|
COPY . .
|
||
|
|
||
|
RUN cargo install --path .
|
||
|
|
||
|
CMD ["bitwarden_rs_ldap"]
|