mirror of
https://github.com/domainaware/parsedmarc.git
synced 2026-02-17 07:03:58 +00:00
* 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
10 lines
148 B
Docker
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"]
|