8 lines
140 B
Docker
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"]
|