Fix build

This commit is contained in:
Sean Whalen
2022-09-09 16:44:21 -04:00
parent de3002db8b
commit 475b89adb0

View File

@@ -2,9 +2,10 @@ FROM python:3.9-slim
WORKDIR /app
COPY parsedmarc/ parsedmarc/
COPY README.md pyproject.toml requirements.txt ./
COPY README.md pyproject.toml ./
RUN pip install -r requirements.txt
RUN pip install -U pip
RUN pip install hatch
RUN hatch build
RUN pip install dist/*.whl