Divent/Dockerfile
Renovate Bot 626af46844
All checks were successful
divent / lint (push) Successful in 2m45s
divent / docker (push) Successful in 2m39s
divent / pypi (push) Has been skipped
chore(deps): update python docker tag to v3.12.6
2024-09-10 06:39:57 +00:00

13 lines
217 B
Docker

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