2022-10-14 00:14:49 +00:00
|
|
|
FROM python:3.10.8-slim as build
|
2022-05-08 14:02:19 +00:00
|
|
|
|
|
|
|
WORKDIR /app
|
|
|
|
COPY . .
|
|
|
|
RUN pip install poetry && poetry build
|
|
|
|
|
2022-10-14 00:14:49 +00:00
|
|
|
FROM python:3.10.8-slim
|
2022-05-08 14:02:19 +00:00
|
|
|
|
|
|
|
COPY --from=build /app/dist /tmp/dist
|
|
|
|
RUN pip install /tmp/dist/*.whl && rm -rf /tmp/dist
|
|
|
|
|
|
|
|
CMD ["divent"]
|