Inital commit

This commit is contained in:
Stephen Newey
2018-11-10 15:28:41 +00:00
commit c197367916
11 changed files with 1416 additions and 0 deletions

12
app/Dockerfile Normal file
View File

@@ -0,0 +1,12 @@
FROM python:3.6
LABEL maintainer="Stephen Newey <github@s-n.me>"
WORKDIR /usr/src/app
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
COPY octopus_to_influxdb.py ./
ENTRYPOINT [ "python", "./octopus_to_influxdb.py" ]