Divent/Dockerfile
2022-05-08 16:02:19 +02:00

8 lines
140 B
Docker

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