aboutsummaryrefslogtreecommitdiffstats
path: root/mqtt-client/Dockerfile
blob: 80350cfe63e7cae6047ac509fc79d9ee340a2d72 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
FROM debian:11-slim
ENV TZ=Europe/London
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
RUN apt-get update -y
RUN apt-get install -y python3-pip iputils-ping
COPY . /app
WORKDIR /app
RUN pip3 install -r requirements.txt
RUN pip3 install -r TasmotaCLI/requirements.txt
RUN pip3 install docker
ENTRYPOINT ["python3"]
CMD ["mqtt-client.py"]