mirror of
https://github.com/domainaware/parsedmarc.git
synced 2026-07-27 10:54:57 +00:00
13 lines
213 B
Docker
13 lines
213 B
Docker
FROM python:3.9-slim
|
|
|
|
WORKDIR /app
|
|
COPY parsedmarc/ parsedmarc/
|
|
COPY README.md pyproject.toml ./
|
|
|
|
RUN pip install -U pip
|
|
RUN pip install hatch
|
|
RUN hatch build
|
|
RUN pip install dist/*.whl
|
|
|
|
ENTRYPOINT ["parsedmarc"]
|