-
Notifications
You must be signed in to change notification settings - Fork 171
environments acft transformers image gpu
github-actions[bot] edited this page Dec 25, 2025
·
150 revisions
Environment used by HuggingFace Transformers Image Finetune components
Version: 73
Preview
View in Studio: https://ml.azure.com/registries/azureml/environments/acft-transformers-image-gpu/version/73
Docker image: mcr.microsoft.com/azureml/curated/acft-transformers-image-gpu:73
# PTCA image
FROM mcr.microsoft.com/aifx/acpt/stable-ubuntu2204-cu126-py310-torch280:biweekly.202512.2
USER root
RUN apt-get -y update && apt-get install -y expat libc-bin libc-bin libc-dev locales libc6 dpkg-dev dpkg libdpkg-perl libssl-dev libssl3 openssl
# Install required packages from pypi
COPY requirements.txt .
RUN pip install -r requirements.txt --no-cache-dir
# vulnerabilities
RUN pip install --upgrade --no-cache-dir 'urllib3>=2.6.0'