fix: docker-minimal missing libssl3

feat/type-attributes
Tomáš Mládek 2023-08-24 19:55:46 +02:00
parent d5f2d3c701
commit 3ad33cf081
1 changed files with 5 additions and 1 deletions

View File

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