Divent/Dockerfile
Michel Roux 1f3b1a2ba0
All checks were successful
continuous-integration/drone/push Build is passing
Update python Docker tag to v3.11.4
2023-06-08 00:28:55 +00:00

13 lines
217 B
Docker

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