Divent/Dockerfile

13 lines
223 B
Docker
Raw Normal View History

2024-11-30 06:36:00 +00:00
FROM python:3.13-slim AS build
2022-05-08 16:02:19 +02:00
WORKDIR /app
COPY . .
RUN pip install poetry && poetry build
2024-11-30 06:36:00 +00:00
FROM python:3.13-slim
2022-05-08 16:02:19 +02:00
COPY --from=build /app/dist /tmp/dist
RUN pip install /tmp/dist/*.whl && rm -rf /tmp/dist
CMD ["divent"]