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