7 lines
201 B
Docker
Raw Permalink Normal View History

2021-01-17 16:35:17 +00:00
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
2021-01-17 16:35:17 +00:00
COPY bridge.pl /bridge.pl
ENTRYPOINT ["/bridge.pl"]