Files
weather_bot/Dockerfile
2026-03-26 12:42:59 +03:00

10 lines
151 B
Docker

FROM python:3.11-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY *.py ./
CMD ["python", "bot.py"]