Spaces:
Sleeping
Sleeping
File size: 323 Bytes
6ce16c4 77eb9de e2aab5c 77eb9de 6ce16c4 e2aab5c 6ce16c4 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
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"]
|