9 lines
277 B
Docker
9 lines
277 B
Docker
FROM debian:bookworm
|
|
|
|
RUN apt update && apt install -y perlbrew curl
|
|
RUN perlbrew init && perlbrew install --verbose perl-5.38.0
|
|
|
|
RUN perlbrew use perl-5.38.0
|
|
RUN echo "source /root/perl5/perlbrew/etc/bashrc && perlbrew switch current" >> ~/.bashrc
|
|
|
|
RUN perlbrew install-cpanm
|