Divent/Dockerfile
Michel Roux 203c6bc6af
All checks were successful
continuous-integration/drone/push Build is passing
Fix main
2022-08-22 21:44:02 +00:00

13 lines
247 B
Docker

FROM python:3.10.6-slim as build
WORKDIR /app
COPY . .
RUN pip install poetry && poetry build
FROM python:3.10.6-slim
COPY --from=build /app/dist /tmp/dist
RUN pip install /tmp/dist/*.whl && rm -rf /tmp/dist
CMD ["python", "-m", "divent.bot"]