Ian Fijolek
f4952b61d1
This will allow `latest` to be `master` and allow git tags to dictate tagged versions on Docker. Also update readme to describe how it's now building
14 lines
291 B
Docker
14 lines
291 B
Docker
FROM python:3
|
|
LABEL maintainer="ian@iamthefij.com"
|
|
# Minitor: https://git.iamthefij.com/iamthefij/minitor
|
|
|
|
COPY ./sample-config.yml /app/config.yml
|
|
WORKDIR /app
|
|
|
|
COPY ./README.md /app/
|
|
COPY ./setup.py /app/
|
|
COPY ./minitor /app/minitor
|
|
RUN pip install -e .
|
|
|
|
ENTRYPOINT python -m minitor.main
|