From a0236ba4594ac2e7f3e31a4d0e620dd225bfa6a2 Mon Sep 17 00:00:00 2001 From: Lucien Cartier-Tilet Date: Thu, 9 Feb 2023 11:57:29 +0100 Subject: [PATCH] fix(backend): compilation The project could not compile previously due to the musl and the missing openssl libraries. This is now fixed. Signed-off-by: Lucien Cartier-Tilet --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 0b5d2db..0f5472c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,6 +5,7 @@ WORKDIR /app COPY Cargo.toml /app/Cargo.toml COPY Cargo.lock /app/Cargo.lock COPY src /app/src +RUN apk update && apk add pkgconfig openssl-dev musl-dev RUN cargo build --release RUN cargo install --path .