13 lines
250 B
Docker
13 lines
250 B
Docker
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" ]
|