diff --git a/Dockerfile b/Dockerfile index 74a2b80..c44801d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,6 +5,9 @@ RUN apt-get update -y && \ apt-get install -y git pkg-config make g++ libssl-dev wget && \ rustup target add x86_64-unknown-linux-gnu +RUN ln -s /usr/local/lib/libssl.so.3 /usr/lib/libssl.so.3 +RUN ln -s /usr/local/lib/libcrypto.so.3 /usr/lib/libcrypto.so.3 + RUN USER=root cargo new --bin presence WORKDIR /presence