-
Notifications
You must be signed in to change notification settings - Fork 166
environments model management
github-actions[bot] edited this page Dec 6, 2025
·
169 revisions
Environment used by Model Management components
Version: 62
Preview
View in Studio: https://ml.azure.com/registries/azureml/environments/model-management/version/62
Docker image: mcr.microsoft.com/azureml/curated/model-management:62
FROM mcr.microsoft.com/aifx/acpt/stable-ubuntu2204-cu126-py310-torch280:biweekly.202512.1
WORKDIR /
RUN apt-get update && apt-get upgrade -y && apt-get install wget nscd python3-idna git git-lfs libxml2 -y
RUN wget https://go.dev/dl/go1.24.9.linux-amd64.tar.gz && \
tar -C /usr/local -xzf go1.24.9.linux-amd64.tar.gz && \
rm go1.24.9.linux-amd64.tar.gz
ENV PATH="/usr/local/go/bin:$PATH"
COPY requirements.txt .
# Clean conda cache and force reinstall pip to overwrite metadata
RUN conda clean --all -y
RUN conda install -n base -c conda-forge pip=25.3 setuptools wheel --force-reinstall -y
RUN conda install -n ptca -c conda-forge pip=25.3 setuptools wheel --force-reinstall -y || true
# This line is added because azureml-automl-dnn-vision depends on python 3.9.
# Added ignore python requires to get this installed.
# RUN pip install --ignore-requires-python azureml-automl-dnn-vision
RUN pip install --no-deps azureml-automl-dnn-vision
RUN pip install -r requirements.txt --no-cache-dir
RUN pip install --upgrade nltk==3.9
# Adding this to exclude Python 3.13 packages from the setuptools library fix
RUN rm -rf /opt/conda/lib/python3.13 || true
# List pip packages
RUN pip list
## Delete
RUN rm requirements.txt