taobin-sheet

This commit is contained in:
Ittipat Lusuk 2026-04-02 12:53:23 +07:00
commit be1cd2876a
5 changed files with 545 additions and 0 deletions

14
Dockerfile Normal file
View file

@ -0,0 +1,14 @@
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"]