mirror of
https://github.com/Alexander-D-Karpov/scripts.git
synced 2024-11-23 04:16:33 +03:00
10 lines
152 B
Docker
10 lines
152 B
Docker
FROM python:3.9-slim
|
|
|
|
WORKDIR /app
|
|
|
|
COPY requirements.txt .
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
COPY bot.py .
|
|
|
|
CMD ["python", "main.py"] |