diff options
author | jwansek <eddie.atten.ea29@gmail.com> | 2023-11-19 18:29:32 +0000 |
---|---|---|
committer | jwansek <eddie.atten.ea29@gmail.com> | 2023-11-19 18:29:32 +0000 |
commit | 450b5ce0582773f4684dfc197f04765b81f429c9 (patch) | |
tree | e19c4ba8deabfd4132230792b17eeb56e6e93802 /mqtt-client/Dockerfile | |
parent | d31d273073eec5220b4eb6cbeb576b3661ec6d7b (diff) | |
download | power.eda.gay-450b5ce0582773f4684dfc197f04765b81f429c9.tar.gz power.eda.gay-450b5ce0582773f4684dfc197f04765b81f429c9.zip |
Revert "Added python script to subscribe to MQTT topics and push them to InfluxDB"
This reverts commit d31d273073eec5220b4eb6cbeb576b3661ec6d7b.
Diffstat (limited to 'mqtt-client/Dockerfile')
-rw-r--r-- | mqtt-client/Dockerfile | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/mqtt-client/Dockerfile b/mqtt-client/Dockerfile deleted file mode 100644 index ad59f9b..0000000 --- a/mqtt-client/Dockerfile +++ /dev/null @@ -1,10 +0,0 @@ -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 -ENTRYPOINT ["python3"] -CMD ["mqtt-client.py"] |