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 && \