1
Fork 0
mirror of https://github.com/Steffo99/patched-porobot.git synced 2024-10-16 09:37:27 +00:00

Add libssl1.1 to the dockerfile

This commit is contained in:
Steffo 2023-01-31 04:21:33 +01:00
parent 191fb5d70d
commit 9e9e321431
Signed by: steffo
GPG key ID: 2A24051445686895

View file

@ -7,6 +7,9 @@ RUN cargo install --path . --all-features --bins
FROM debian:buster AS system FROM debian:buster AS system
COPY --from=build /usr/local/cargo/bin/patched_porobot_telegram /usr/local/bin/patched_porobot_telegram COPY --from=build /usr/local/cargo/bin/patched_porobot_telegram /usr/local/bin/patched_porobot_telegram
RUN apt update
RUN apt upgrade -y
RUN apt install -y libssl1.1
FROM system AS entrypoint FROM system AS entrypoint
ENTRYPOINT ["patched_porobot_telegram"] ENTRYPOINT ["patched_porobot_telegram"]