From 3ad33cf08150aa0c07d2ab67674bbac01b6b0004 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Ml=C3=A1dek?= Date: Thu, 24 Aug 2023 19:55:46 +0200 Subject: [PATCH] fix: docker-minimal missing libssl3 --- Earthfile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Earthfile b/Earthfile index c6a81c8..52bfc50 100644 --- a/Earthfile +++ b/Earthfile @@ -16,6 +16,10 @@ appimage: docker-minimal: FROM debian:bookworm + RUN apt-get update && \ + apt-get -y install libssl3 && \ + apt-get clean && \ + rm -rf /var/lib/apt/lists/* COPY +upend-bin/upend /usr/bin/upend COPY --dir +webui/dist /usr/share/upend/webui ENTRYPOINT ["/usr/bin/upend"] @@ -29,7 +33,7 @@ docker-minimal: docker: FROM +docker-minimal RUN apt-get update && \ - apt-get -y install libssl3 ffmpeg wget && \ + apt-get -y install ffmpeg wget && \ wget https://github.com/bbc/audiowaveform/releases/download/1.8.1/audiowaveform_1.8.1-1-12_amd64.deb && \ apt -y install ./audiowaveform_1.8.1-1-12_amd64.deb && \ rm -v audiowaveform_1.8.1-1-12_amd64.deb && \