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
|
|
|
|
2018-07-13 06:01:36 +00:00
|
|
|
# Expose default metrics port
|
|
|
|
EXPOSE 8080
|
|
|
|
|
2018-10-29 19:28:17 +00:00
|
|
|
# Copy Python package to container
|
2018-04-18 04:01:58 +00:00
|
|
|
COPY ./README.md /app/
|
|
|
|
COPY ./setup.py /app/
|
|
|
|
COPY ./minitor /app/minitor
|
|
|
|
RUN pip install -e .
|
|
|
|
|
2018-10-29 19:28:17 +00:00
|
|
|
# Copy scripts
|
|
|
|
COPY ./scripts /app/scripts
|
|
|
|
|
2018-07-13 06:01:36 +00:00
|
|
|
ENTRYPOINT [ "python3", "-m", "minitor.main" ]
|