Files
parsedmarc/Dockerfile
Sean Whalen 475b89adb0 Fix build
2022-09-09 16:44:21 -04:00

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"]