From 68662cfee3ab8f71291e9f5e0fb0b159489a422b Mon Sep 17 00:00:00 2001 From: Marius <marius@twostairs.com> Date: Thu, 18 Apr 2019 23:47:07 +0200 Subject: [PATCH] Implemented Dockerfile --- Dockerfile | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..31d712d --- /dev/null +++ b/Dockerfile @@ -0,0 +1,8 @@ +FROM python:3-alpine + +RUN pip install --no-cache-dir influxdb phue + +WORKDIR /srv +ADD ./hue2influx.py . + +CMD [ "python", "/srv/hue2influx.py" ] -- GitLab