Skip to content

environments acft medimageinsight adapter finetune

github-actions[bot] edited this page Jul 4, 2025 · 21 revisions

acft-medimageinsight-adapter-finetune

Overview

AzureML ACFT MedImageInsight Adapter Image for Training

Version: 10

Tags

Preview

View in Studio: https://ml.azure.com/registries/azureml/environments/acft-medimageinsight-adapter-finetune/version/10

Docker image: mcr.microsoft.com/azureml/curated/acft-medimageinsight-adapter-finetune:10

Docker build context

Dockerfile

# PTCA image
FROM mcr.microsoft.com/aifx/acpt/stable-ubuntu2204-cu118-py310-torch271:biweekly.202506.3

USER root
RUN apt-get -y update

# Install unzip
RUN apt-get -y install unzip

# Install required packages from pypi
COPY requirements.txt .
RUN pip install -r requirements.txt --no-cache-dir

# Upgrade requests in the system Python (3.13) for fixing vulnerability
RUN /opt/conda/bin/python3.13 -m pip install --upgrade requests || true
Clone this wiki locally