SQL_Agent / Dockerfile
Aidahaouas's picture
Update Dockerfile
6ce16c4 verified
raw
history blame
323 Bytes
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"]