Divent/Dockerfile

13 lines
243 B
Docker
Raw Normal View History

2022-06-17 11:07:10 +02:00
FROM python:3.10.5-slim as build
2022-05-08 16:02:19 +02:00
WORKDIR /app
COPY . .
2022-06-17 11:07:10 +02:00
RUN pip install poetry && poetry build
2022-06-08 23:02:14 +02:00
FROM python:3.10.5-slim
COPY --from=build /app/dist /tmp/dist
RUN pip install /tmp/dist/*.whl && rm -rf /tmp/dist
2022-05-08 16:02:19 +02:00
2022-06-08 23:02:14 +02:00
CMD ["python", "-m", "divent"]