FROM python:3.12-slim WORKDIR /app # 의존성 설치 COPY requirements.txt . RUN pip install --no-cache-dir -r requirements.txt # 애플리케이션 복사 COPY app.py . COPY index.html . # 포트 노출 EXPOSE 7860 # 애플리케이션 실행 CMD ["python", "app.py"]