refactor: Dockerfile - 경로 수정

This commit is contained in:
OhSeongRak 2025-06-17 12:56:05 +09:00
parent b2aa6341e7
commit 6373c894dc

View File

@ -2,11 +2,12 @@ FROM python:3.11-slim
WORKDIR /app WORKDIR /app
COPY requirements.txt . # 경로 수정
COPY smarketing-ai/requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt RUN pip install --no-cache-dir -r requirements.txt
# 애플리케이션 코드 복사 # 애플리케이션 코드 복사
COPY . . COPY smarketing-ai/ .
# 포트 노출 # 포트 노출
EXPOSE 5001 EXPOSE 5001