[image-service] first commit

This commit is contained in:
Ittipat Lusuk 2026-05-08 10:41:29 +07:00
commit 88351993cf
6 changed files with 153 additions and 0 deletions

12
Dockerfile Normal file
View file

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