Divent/Dockerfile
Renovate Bot faa898f3e1
All checks were successful
divent / lint (push) Successful in 2m11s
divent / docker (push) Successful in 2m3s
divent / pypi (push) Has been skipped
chore(deps): update python docker tag to v3.12.4
2024-06-08 06:54:51 +00:00

13 lines
217 B
Docker

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