feat(co-gahusb): 스캐폴드 (Dockerfile·requirements·config)

This commit is contained in:
2026-06-12 07:19:51 +09:00
parent 1129600341
commit 0d466b235c
6 changed files with 43 additions and 0 deletions

12
co-gahusb/Dockerfile Normal file
View File

@@ -0,0 +1,12 @@
FROM python:3.12-slim-bookworm
ENV PYTHONUNBUFFERED=1
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir --timeout 600 --retries 5 -r requirements.txt
COPY . .
EXPOSE 8000
CMD ["uvicorn", "app.server:app", "--host", "0.0.0.0", "--port", "8000", "--workers", "1"]