Had to also include openssl directly, apparently alpine doesnt do dep resolution there with -dev packages?
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
Automation Pipeline 2023-10-09 08:45:42 -04:00
parent 475d03e4cd
commit 59a2f123f4

View file

@ -1,6 +1,6 @@
FROM docker:cli FROM docker:cli
USER root USER root
RUN apk update && apk add perl curl bash build-base wget openssl-dev zlib-dev RUN apk update && apk add perl curl bash build-base wget openssl-dev zlib-dev openssl
#USER rootless #USER rootless
RUN curl -L https://install.perlbrew.pl | bash RUN curl -L https://install.perlbrew.pl | bash
RUN bash -c "source $HOME/perl5/perlbrew/etc/bashrc; perlbrew init && perlbrew install -j 8 --verbose --notest perl-5.38.0" RUN bash -c "source $HOME/perl5/perlbrew/etc/bashrc; perlbrew init && perlbrew install -j 8 --verbose --notest perl-5.38.0"