Spaces:
Runtime error
Runtime error
| 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"] | |