From 09293a95d830085daf40b4928d31d7b4e2d3b4e2 Mon Sep 17 00:00:00 2001 From: Toni Barth Date: Mon, 4 Mar 2024 22:52:55 +0100 Subject: [PATCH] try to fix broken libssl installation --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 8976bf2..624a65d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,8 @@ FROM rust:1.76-slim-bookworm as build # create a new empty shell project -RUN USER=root cargo new --bin hitster +RUN apt -y install libssl-dev && \ + USER=root cargo new --bin hitster WORKDIR /hitster # copy over your manifests