Divent/Dockerfile
Renovate Bot 5b64658837
All checks were successful
divent / lint (push) Successful in 1m40s
divent / docker (push) Successful in 1m16s
divent / pypi (push) Has been skipped
chore(deps): update python
2024-11-23 19:43:39 +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"]