taobin_sheet/Dockerfile
2026-04-02 12:53:23 +07:00

14 lines
No EOL
246 B
Docker

FROM python:3.11-slim
WORKDIR /app
ENV TZ=Asia/Bangkok
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
RUN apt-get update && apt-get install -y git && rm -rf /var/lib/apt/lists/*
CMD ["python", "main.py"]