Compare commits

...

3 commits

Author SHA1 Message Date
a9e2a0ae42 typo
All checks were successful
ci/woodpecker/push/build Pipeline was successful
2023-07-30 07:14:18 -04:00
079e394db9 Add carton
Some checks failed
ci/woodpecker/push/build Pipeline failed
2023-07-30 06:47:48 -04:00
52f8826187 More env setup to make it easier 2023-07-30 06:46:35 -04:00

View file

@ -4,6 +4,12 @@ RUN apt update && apt install -y perlbrew curl
RUN perlbrew init && perlbrew install --verbose perl-5.38.0 RUN perlbrew init && perlbrew install --verbose perl-5.38.0
RUN perlbrew use perl-5.38.0 RUN perlbrew use perl-5.38.0
RUN echo "source /root/perl5/perlbrew/etc/bashrc && perlbrew switch current" >> ~/.bashrc RUN echo "source /root/perl5/perlbrew/etc/bashrc && perlbrew switch perl-5.38.0" >> ~/.bashrc
RUN perlbrew install-cpanm ENV PERLBREW_ROOT=/root/perl5/perlbrew
ENV PERLBREW_HOME=/root/.perlbrew
ENV PERLBREW_PATH=/root/perl5//perlbrew/bin:/root/perl5/perlbrew/perls/perl-5.38.0/bin
ENV PATH=${PERLBREW_PATH}:${PATH}
ENV PERLBREW_MANPATH=/root/perl5/perlbrew/perls/perl-5.38.0/man
RUN perlbrew install-cpanm && cpanm install --verbose Carton