aboutsummaryrefslogtreecommitdiffstats
path: root/mqtt-client/Dockerfile
diff options
context:
space:
mode:
authorjwansek <eddie.atten.ea29@gmail.com>2023-11-19 18:29:32 +0000
committerjwansek <eddie.atten.ea29@gmail.com>2023-11-19 18:29:32 +0000
commit450b5ce0582773f4684dfc197f04765b81f429c9 (patch)
treee19c4ba8deabfd4132230792b17eeb56e6e93802 /mqtt-client/Dockerfile
parentd31d273073eec5220b4eb6cbeb576b3661ec6d7b (diff)
downloadpower.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/Dockerfile10
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"]