2018-03-16 21:20:03 +00:00
|
|
|
FROM python:3
|
2018-04-18 04:01:58 +00:00
|
|
|
LABEL maintainer="ian@iamthefij.com"
|
|
|
|
# Minitor: https://git.iamthefij.com/iamthefij/minitor
|
2018-03-16 21:20:03 +00:00
|
|
|
|
2018-04-18 04:01:58 +00:00
|
|
|
COPY ./sample-config.yml /app/config.yml
|
2018-03-16 21:20:03 +00:00
|
|
|
WORKDIR /app
|
2018-04-18 04:01:58 +00:00
|
|
|
|
|
|
|
COPY ./README.md /app/
|
|
|
|
COPY ./setup.py /app/
|
|
|
|
COPY ./minitor /app/minitor
|
|
|
|
RUN pip install -e .
|
|
|
|
|
|
|
|
ENTRYPOINT python -m minitor.main
|