Divent/Dockerfile
Renovate Bot a6793a9d27
All checks were successful
divent / lint (push) Successful in 5m6s
divent / docker (push) Successful in 2m18s
divent / pypi (push) Has been skipped
chore(deps): update python docker tag to v3.13.0
2024-10-08 06:41:54 +00:00

13 lines
217 B
Docker

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