17 lines
310 B
Docker
17 lines
310 B
Docker
FROM python:3.11-slim
|
|
|
|
WORKDIR /app
|
|
|
|
# 의존성 복사 및 설치
|
|
COPY requirements.txt .
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
# 애플리케이션 코드 복사
|
|
COPY app ./app
|
|
|
|
# 포트 노출
|
|
EXPOSE 8000
|
|
|
|
# 서버 실행
|
|
CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "8000"]
|