pls-rag / Dockerfile
m97j's picture
Initial codes commit
4fdc679
raw
history blame
235 Bytes
FROM python:3.10-slim
WORKDIR /app
# requirements 설치
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# 앱 코드 복사
COPY . .
CMD ["sh", "-c", "uvicorn rag.app:app --host 0.0.0.0 --port ${PORT}"]