Compare commits

..

No commits in common. "6fdf2d2427d9d4f3294e36603b17d64c887e7ba2" and "618bc5d76c22ff5fe8b9ca0a560030586da803d1" have entirely different histories.

2 changed files with 5 additions and 7 deletions

View File

@ -1,6 +1,4 @@
FROM perl
RUN yes | cpan install Net::MQTT::Simple || true
RUN yes | cpan install -f Net::RabbitMQ || true
RUN yes | cpan install Net::Stomp || true
RUN yes | cpan install Net::MQTT::Simple Net::RabbitMQ Net::Stomp
COPY bridge.pl /bridge.pl
ENTRYPOINT ["/bridge.pl"]
ENTRYPOINT ["/bridge.pl"]

View File

@ -1,7 +1,7 @@
#!/usr/bin/env perl
#!/usr/bin/perl
# use warnings;
use strict;
# use strict;
use Net::Stomp;
use Net::MQTT::Simple;
@ -111,4 +111,4 @@ while(1) {
}
$amq->disconnect();
$mq->disconnect();