Divent/Dockerfile
Renovate Bot ec40c19778
All checks were successful
divent / lint (push) Successful in 2m3s
divent / docker (push) Successful in 2m8s
divent / pypi (push) Has been skipped
chore(deps): update python to v3.13.0
2024-11-23 19:24:17 +00:00

13 lines
227 B
Docker

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