From 29bfe61a2cb8b0a2a49483f004ccb6f0b414d637 Mon Sep 17 00:00:00 2001 From: TheJoKlLa Date: Wed, 17 Aug 2022 18:56:33 +0000 Subject: [PATCH] Added paho-mqtt --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 2b7b0b9..0732c9c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,8 @@ FROM rust:bullseye as builder # install build deps RUN apt-get update && apt-get upgrade -y -RUN apt-get install -yqq --no-install-recommends capnproto +RUN apt-get install -yqq --no-install-recommends capnproto python3 python3-pip +RUN pip3 install paho-mqtt WORKDIR /usr/src/bffh COPY . .