Files
octograph/app/Dockerfile
Stephen Newey c197367916 Inital commit
2018-11-10 15:28:41 +00:00

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" ]