diff --git a/Dockerfile b/Dockerfile index 573228a..8104354 100644 --- a/Dockerfile +++ b/Dockerfile @@ -43,7 +43,9 @@ RUN apk --no-cache --update add \ && cd /root \ && tar xvzf backuppc-master.tar.gz \ && cd backuppc-master \ - && cpanm --quiet --installdeps --notest \ + && curl -o cpanm -L https://cpanmin.us \ + && chmod +x cpanm \ + && ./cpanm --quiet --installdeps --notest . \ && ./makeDist --version $BACKUPPC_VERSION \ && cp dist/BackupPC-$BACKUPPC_VERSION.tar.gz ../ \ && cd .. \