Fix build due to missing perl module

closes: #1
This commit is contained in:
2025-12-30 12:57:57 +01:00
parent f52f0dcb68
commit 0ff086cf48

View File

@@ -7,7 +7,7 @@ ARG ZOLA_VERSION="0.21.0"
ARG CHORDPRO_VERSION="6.090.0" ARG CHORDPRO_VERSION="6.090.0"
RUN apt update -y && apt-get install -y --no-install-recommends \ RUN apt update -y && apt-get install -y --no-install-recommends \
ca-certificates openssl openssh-client rsync git wget build-essential cpanminus ghostscript ca-certificates openssl openssh-client rsync git wget build-essential cpanminus libio-socket-ssl-perl ghostscript
RUN update-ca-certificates RUN update-ca-certificates
RUN cpanm chordpro@${CHORDPRO_VERSION} RUN cpanm chordpro@${CHORDPRO_VERSION}
RUN wget https://github.com/getzola/zola/releases/download/v${ZOLA_VERSION}/zola-v${ZOLA_VERSION}-x86_64-unknown-linux-gnu.tar.gz && \ RUN wget https://github.com/getzola/zola/releases/download/v${ZOLA_VERSION}/zola-v${ZOLA_VERSION}-x86_64-unknown-linux-gnu.tar.gz && \