-
Notifications
You must be signed in to change notification settings - Fork 149
environments acft transformers image gpu
github-actions[bot] edited this page Aug 12, 2025
·
130 revisions
Environment used by HuggingFace Transformers Image Finetune components
Version: 67
Preview
View in Studio: https://ml.azure.com/registries/azureml/environments/acft-transformers-image-gpu/version/67
Docker image: mcr.microsoft.com/azureml/curated/acft-transformers-image-gpu:67
# PTCA image
FROM mcr.microsoft.com/aifx/acpt/stable-ubuntu2204-cu118-py310-torch271:biweekly.202508.1
USER root
RUN apt-get -y update && apt-get install -y expat
# Install required packages from pypi
COPY requirements.txt .
RUN pip install -r requirements.txt --no-cache-dir
# Vulnerability Fix
RUN pip install gunicorn==23.0.0
RUN pip install certifi==2024.07.04
# Upgrade requests in the system Python (3.13) for fixing vulnerability
RUN /opt/conda/bin/python3.13 -m pip install --upgrade requests urllib3 || true