Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Security patch 2025.02 for ai-studio-dev #3868

Merged
merged 4 commits into from
Feb 25, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,6 @@ RUN apt update && apt upgrade -y && apt install -y fuse
COPY requirements.txt .
RUN pip install -r requirements.txt

# inference server dependencies, it has to be installed after the requirements.txt
RUN pip install azureml-inference-server-http
# Temporary fix version for security patch
RUN pip install -U setuptools>=70.0.0

# Adding this install under root's path for the custom AI Studio container solution
ENV PATH="/home/vscode/.dotnet/tools:${PATH}"

Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Install Python SDK
azure-ai-ml
openai>1.0
azure-ai-ml=={{latest-pypi-version}}
openai
# hardcoded the version of azureml-mlflow here for faster Docker image building speed
azureml-mlflow==1.57.0
azureml-mlflow=={{latest-pypi-version}}
# copilot dependencies
keyrings.alt
ipykernel
Expand All @@ -11,3 +11,6 @@ langchain-openai
semantic-kernel
pytest
keyring
# dev dependencies
setuptools>70.0.0
azureml-inference-server-http
Loading