Files
parsedmarc/Dockerfile
Nathan Thorpe abf07125c4 Add Dockerfile & build/push task (#316)
* add dockerfile and actions task to build image

* test on branch

* change to push only on release, update readme

* remove pip install requirements

* change to on release github action
2022-05-05 21:06:38 -04:00

10 lines
148 B
Docker

FROM python:3.9-slim
WORKDIR /app
COPY parsedmarc/ parsedmarc/
COPY README.rst setup.py ./
RUN python setup.py install
ENTRYPOINT ["parsedmarc"]