we need to be explicit about the perl and cpan version used

tmp
rysiek 2017-02-23 14:56:09 +01:00
parent 3fe1008cc3
commit b094e01261
1 changed files with 12 additions and 12 deletions

View File

@ -11,18 +11,18 @@ ENV KUVERT_HOME /home/kuvert
# install the needed CPAN modules
# divided into separate RUN commands for easier debugging
# (cpan's output does not lend itself to debugging very well...)
RUN cpan -i MIME::Parser
RUN cpan -i Mail::Address
RUN cpan -i Net::SMTPS
RUN cpan -i Sys::Hostname
RUN cpan -i Net::Server::Mail
RUN cpan -i Authen::SASL
RUN cpan -i IO::Socket::INET
RUN cpan -i FileHandle
RUN cpan -i File::Slurp
RUN cpan -i File::Temp
RUN cpan -i Fcntl
RUN cpan -i Time::HiRes
RUN /usr/bin/cpan -i MIME::Parser
RUN /usr/bin/cpan -i Mail::Address
RUN /usr/bin/cpan -i Net::SMTPS
RUN /usr/bin/cpan -i Sys::Hostname
RUN /usr/bin/cpan -i Net::Server::Mail
RUN /usr/bin/cpan -i Authen::SASL
RUN /usr/bin/cpan -i IO::Socket::INET
RUN /usr/bin/cpan -i FileHandle
RUN /usr/bin/cpan -i File::Slurp
RUN /usr/bin/cpan -i File::Temp
RUN /usr/bin/cpan -i Fcntl
RUN /usr/bin/cpan -i Time::HiRes
COPY ./ /usr/local/src/kuvert/
RUN cd /usr/local/src/kuvert/ && \