Webchatbot / Dockerfile
sesacna's picture
Update Dockerfile
ccad457 verified
Raw
History Blame Contribute Delete
429 Bytes
FROM python:3.11-slim
WORKDIR /app
# ν•„μš”ν•œ νŒ¨ν‚€μ§€ μ„€μΉ˜
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# μ•± 볡사
COPY . .
# βœ… Streamlit μ‹€ν–‰ (app.py λ˜λŠ” web.py μžλ™ 인식)
CMD ["bash", "-lc", "if [ -f app.py ]; then streamlit run app.py --server.port ${PORT:-7860} --server.address 0.0.0.0; else streamlit run web.py --server.port ${PORT:-7860} --server.address 0.0.0.0; fi"]