Inital commit
This commit is contained in:
12
app/Dockerfile
Normal file
12
app/Dockerfile
Normal 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" ]
|
||||
Reference in New Issue
Block a user