Compare commits

..

No commits in common. "main" and "v0.0.2" have entirely different histories.
main ... v0.0.2

View file

@ -1,14 +1,13 @@
FROM docker:cli FROM docker:cli
USER root USER root
ENV HOME=/root
RUN apk update && apk add perl curl bash build-base wget openssl-dev zlib-dev openssl 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"
WORKDIR /root/ WORKDIR /root/
ENV SHELL=/bin/bash ENV SHELL=/bin/bash
RUN bash -c "source $HOME/perl5/perlbrew/etc/bashrc; perlbrew use perl-5.38.0 && perlbrew install-cpanm && wget https://gitea.simcop2387.info/simcop2387/docker-perl/raw/branch/master/cpanfile && cpanm --notest --installdeps . --verbose && rm cpanfile" RUN bash -c "source $HOME/perl5/perlbrew/etc/bashrc; perlbrew use perl-5.38.0 && perlbrew install-cpanm && wget https://gitea.simcop2387.info/simcop2387/docker-perl/raw/branch/master/cpanfile && cpanm --installdeps . --verbose && rm cpanfile"
ENV PATH="/root/perl5/perlbrew/bin:/root/perl5/perlbrew/perls/perl-5.38.0/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" ENV PATH="/home/rootless/perl5/perlbrew/bin:/home/rootless/perl5/perlbrew/perls/perl-5.38.0/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
ENV PERLBREW_HOME="/root/.perlbrew" ENV PERLBREW_HOME="/home/rootless/.perlbrew"
ENV PERLBREW_ROOT="/root/perl5/perlbrew" ENV PERLBREW_ROOT="/home/rootless/perl5/perlbrew"
ENV PERLBREW_SHELLRC_VERSION="0.98" ENV PERLBREW_SHELLRC_VERSION="0.98"