Skip to content

Commit

Permalink
Fix DBCopilot environment Vulnerabilities
Browse files Browse the repository at this point in the history
  • Loading branch information
ricardrao committed Aug 1, 2024
1 parent c733ef6 commit cbf5c4e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,11 @@ RUN apt-get update && apt-get install -y \
libc6=2.31-0ubuntu9.16 \
libc-dev-bin=2.31-0ubuntu9.16 \
git \
git-man &&\
git-man \
libpython3.8-minimal=3.8.10-0ubuntu1~20.04.10 \
libpython3.8-stdlib=3.8.10-0ubuntu1~20.04.10\
python3.8-minimal=3.8.10-0ubuntu1~20.04.10 \
python3.8=3.8.10-0ubuntu1~20.04.10 &&\
rm -rf /var/lib/apt/lists/*

# Install MS SQL ODBC Driver
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ RUN python -m pip install --upgrade pip && \
pip install promptflow-image-bundle[azure]==0.3.0 && \
pip install promptflow-vectordb==0.2.10 && \
## Install dbcopilot
pip install db-copilot-tool==0.0.8
pip install db-copilot-tool==0.0.8 \
pip install setuptools==70.0.0

# Fix vunerabilities
RUN /bin/bash -c "source /opt/miniconda/etc/profile.d/conda.sh && \
Expand Down

0 comments on commit cbf5c4e

Please sign in to comment.