environments amelie training - Azure/azureml-assets GitHub Wiki
(Private Preview) An environment used by Azure Amelie Agent for training models. This environment is part of a preview feature, and subject to the supplemental terms of use for Microsoft Azure Previews (https://azure.microsoft.com/en-us/support/legal/preview-supplemental-terms/).
Version: 3
Preview
Python : 3.11
Training
View in Studio: https://ml.azure.com/registries/azureml/environments/amelie-training/version/3
Docker image: mcr.microsoft.com/azureml/curated/amelie-training:3
FROM mcr.microsoft.com/aifx/acpt/stable-ubuntu2204-cu126-py310-torch27x:biweekly.202508.2
WORKDIR /workspace
RUN apt update && \
apt install -y --no-install-recommends \
build-essential \
python3-dev \
wget \
fuse3 \
libfuse3-3 \
dos2unix \
ca-certificates \
rsync && \
wget -q https://github.com/Azure/azure-storage-fuse/releases/download/blobfuse2-2.5.0/blobfuse2-2.5.0-Ubuntu-22.04.x86_64.deb && \
dpkg -i blobfuse2-2.5.0-Ubuntu-22.04.x86_64.deb || apt install -f -y && \
rm -f blobfuse2-2.5.0-Ubuntu-22.04.x86_64.deb && \
apt clean && \
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
COPY requirements.txt .
RUN pip install --no-cache-dir numpy==1.26.2 cython==3.0.11 && \
pip install --no-cache-dir --no-build-isolation -r requirements.txt && \
conda clean -afy && \
pip cache purge && \
find /opt/conda -name "*.pyc" -delete
COPY startup.sh .
RUN dos2unix startup.sh && chmod +x startup.sh