Divent/Dockerfile
Renovate Bot 6bb3775571
All checks were successful
divent / lint (push) Successful in 2m18s
divent / docker (push) Successful in 2m48s
divent / pypi (push) Has been skipped
chore(deps): update python docker tag to v3.12.3
2024-04-10 06:38:42 +00:00

13 lines
217 B
Docker

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