mirror of
https://github.com/domainaware/parsedmarc.git
synced 2026-03-22 22:42:45 +00:00
12 lines
221 B
Docker
12 lines
221 B
Docker
FROM python:3.9-slim
|
|
|
|
WORKDIR /app
|
|
COPY parsedmarc/ parsedmarc/
|
|
COPY README.md pyproject.toml requirements.txt ./
|
|
|
|
RUN pip install -r requirements.txt
|
|
RUN hatch build
|
|
RUN pip install dist/*.whl
|
|
|
|
ENTRYPOINT ["parsedmarc"]
|