diff --git a/Dockerfile b/Dockerfile index a6d0e33..ff1d76f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,6 @@ FROM perl -RUN yes | cpan install Net::MQTT::Simple Net::RabbitMQ Net::Stomp +RUN yes | cpan install Net::MQTT::Simple || true +RUN yes | cpan install -f Net::RabbitMQ || true +RUN yes | cpan install Net::Stomp || true COPY bridge.pl /bridge.pl -ENTRYPOINT ["/bridge.pl"] \ No newline at end of file +ENTRYPOINT ["/bridge.pl"]