12 lines
158 B
Docker
12 lines
158 B
Docker
FROM python:3.10-slim
|
|
|
|
WORKDIR /app
|
|
|
|
COPY requirements_bot.txt .
|
|
|
|
RUN pip3 install -r requirements_bot.txt
|
|
|
|
COPY code /app
|
|
|
|
ENTRYPOINT [ "python", "bot.py" ]
|