6 lines
137 B
Docker
6 lines
137 B
Docker
|
FROM python:3.10-bullseye
|
||
|
COPY requirements.txt /app/
|
||
|
WORKDIR /app
|
||
|
RUN pip install -r requirements.txt
|
||
|
COPY . .
|
||
|
CMD ["python3", "bot.py"]
|