taobin_image/Dockerfile

12 lines
169 B
Text
Raw Normal View History

2026-05-08 10:41:29 +07:00
FROM python:3.11-slim
WORKDIR /app
ENV TZ=Asia/Bangkok
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
CMD ["python", "main.py"]