7 lines
201 B
Docker
7 lines
201 B
Docker
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
|
|
COPY bridge.pl /bridge.pl
|
|
ENTRYPOINT ["/bridge.pl"]
|