test1-ssboost / Dockerfile
ssboost's picture
Update Dockerfile
50069eb verified
raw
history blame contribute delete
342 Bytes
# Python 베이슀 이미지 μ‚¬μš©
FROM python:3.8-slim
# μž‘μ—… 디렉터리 μ„€μ •
WORKDIR /app
# ν•„μš”ν•œ νŒ¨ν‚€μ§€ μ„€μΉ˜
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# μ• ν”Œλ¦¬μΌ€μ΄μ…˜ μ½”λ“œ 볡사
COPY . .
# FastAPI μ„œλ²„ μ‹€ν–‰
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7910"]