13 lines
189 B
Docker
Executable File
13 lines
189 B
Docker
Executable File
FROM python:3.10
|
|
|
|
WORKDIR /app
|
|
|
|
COPY requirements.txt .
|
|
|
|
RUN pip install --upgrade pip \
|
|
&& pip install --no-cache-dir -r requirements.txt
|
|
|
|
COPY . .
|
|
|
|
CMD ["python", "telegram_bot.py"]
|