Divent/Dockerfile
Michel Roux 66040b8029
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing
Update dependency python
2022-06-08 00:23:08 +00:00

8 lines
140 B
Docker

FROM python:3.10.5-slim
WORKDIR /app
COPY . .
RUN pip install poetry && poetry install --no-dev
CMD ["poetry", "run", "python", "bot.py"]