2025-06-14 23:00:34 +09:00

16 lines
265 B
Docker

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