Divent/Dockerfile

13 lines
227 B
Docker
Raw Permalink Normal View History

2025-02-08 16:11:56 +01:00
FROM python:3.13.2-slim AS build
2022-05-08 16:02:19 +02:00
WORKDIR /app
COPY . .
RUN pip install poetry && poetry build
2025-02-08 16:11:56 +01:00
FROM python:3.13.2-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"]