업데이트

This commit is contained in:
2025-12-09 21:39:23 +09:00
parent dd9acf62a3
commit 37a150bd0d
35 changed files with 5587 additions and 493 deletions

View File

@@ -27,9 +27,10 @@ COPY requirements.txt .
RUN pip install --no-cache-dir --upgrade pip \
&& pip install --no-cache-dir -r requirements.txt
# COPY . /app
# 3. 애플리케이션 코드 복사 (.dockerignore로 테스트/문서 제외)
COPY . /app
RUN mkdir -p logs
RUN mkdir -p logs data
CMD ["python", "main.py"]