Bump libssl-dev version

Fixes #144
This commit is contained in:
ViViDboarder 2024-07-12 14:00:03 -07:00
parent 0feac2d904
commit 86e7a827f6

View File

@ -20,7 +20,7 @@ RUN cargo build --release
FROM ubuntu:focal
WORKDIR /app
RUN apt-get update -y && apt-get install -y libssl-dev=1.1.1f-1ubuntu2.20 --no-install-recommends && rm -rf /var/lib/apt/lists/*
RUN apt-get update -y && apt-get install -y libssl-dev=1.1.1f-1ubuntu2.22 --no-install-recommends && rm -rf /var/lib/apt/lists/*
COPY --from=builder /usr/src/vaultwarden_ldap/target/release/vaultwarden_ldap /usr/local/bin/
CMD ["/usr/local/bin/vaultwarden_ldap"]