diff --git a/Dockerfile b/Dockerfile
new file mode 100644
index 0000000000000000000000000000000000000000..31d712df95dc94b99b29108ca064a79ad322e867
--- /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" ]