14 lines
237 B
Docker
14 lines
237 B
Docker
FROM python:3.11-slim
|
|
|
|
# 작업 디렉토리 설정
|
|
WORKDIR /app
|
|
|
|
# 의존성 파일 복사 및 설치
|
|
COPY requirements.txt .
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
# 소스 코드 복사
|
|
COPY . .
|
|
|
|
CMD ["python", "run.py"]
|