Divent/Dockerfile
Renovate Bot 54c07209ca
Some checks failed
renovate/artifacts Artifact file update failure
divent / lint (push) Failing after 1m33s
divent / docker (push) Has been skipped
divent / pypi (push) Has been skipped
chore(deps): update python
2024-12-05 06:38:13 +00:00

13 lines
223 B
Docker

FROM python:3.13-slim AS build
WORKDIR /app
COPY . .
RUN pip install poetry && poetry build
FROM python:3.13-slim
COPY --from=build /app/dist /tmp/dist
RUN pip install /tmp/dist/*.whl && rm -rf /tmp/dist
CMD ["divent"]