Spaces:
Sleeping
Sleeping
| FROM mcr.microsoft.com/mssql-tools:latest | |
| RUN apt-get update && apt-get install -y \ | |
| unixodbc \ | |
| unixodbc-dev \ | |
| libodbc1 \ | |
| python3-pip | |
| COPY requirements.txt . | |
| RUN pip install --no-cache-dir -r requirements.txt | |
| COPY . . | |
| CMD ["streamlit", "run", "app.py", "--server.port=7860", "--server.enableCORS=false"] | |