-
Notifications
You must be signed in to change notification settings - Fork 164
environments acft medimageinsight embedding generator
github-actions[bot] edited this page Nov 4, 2025
·
36 revisions
Environment used by MedImageInsight Embedding Generation component
Version: 20
Preview
View in Studio: https://ml.azure.com/registries/azureml/environments/acft-medimageinsight-embedding-generator/version/20
Docker image: mcr.microsoft.com/azureml/curated/acft-medimageinsight-embedding-generator:20
# PTCA image
FROM mcr.microsoft.com/aifx/acpt/stable-ubuntu2204-cu126-py310-torch280:biweekly.202509.2
USER root
RUN apt-get -y update
# Install unzip
RUN apt-get -y install unzip 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
# Upgrade requests in the system Python (3.13) for fixing vulnerability
RUN /opt/conda/bin/python3.13 -m pip install --upgrade requests urllib3 || true