Add libraries
Docker Build and Release Upload / build-rocm (push) Failing after 1m47s
Docker Build and Release Upload / build-cuda (push) Has been cancelled
Docker Build and Release Upload / build-uvicorn (push) Has been cancelled

This commit is contained in:
2026-04-16 19:19:01 -07:00
parent e3f2375e4c
commit 24148cf5b6
+7 -3
View File
@@ -4,11 +4,15 @@ FROM ubuntu:24.04
# Set environment variables for 7900 XTX (gfx1100) # Set environment variables for 7900 XTX (gfx1100)
ENV HSA_OVERRIDE_GFX_VERSION=11.0.0 ENV HSA_OVERRIDE_GFX_VERSION=11.0.0
ENV TORCH_ROCM_AOTRITON_ENABLE_EXPERIMENTAL=1 ENV TORCH_ROCM_AOTRITON_ENABLE_EXPERIMENTAL=1
ENV LD_LIBRARY_PATH=/usr/lib/aarch64-linux-gnu:$LD_LIBRARY_PATH
ENV PYTHONUNBUFFERED=1 ENV PYTHONUNBUFFERED=1
# Install basic Python and Graphics libs RUN apt update -y && apt install -y --no-install-recommends \
RUN apt update -y && apt install -y \ python3-pip \
python3-pip python3-dev git libgl1-mesa-glx libglib2.0-0 \ python3-dev \
git \
libgl1 \
libglib2.0-0 \
&& rm -rf /var/lib/apt/lists/* && rm -rf /var/lib/apt/lists/*
# Set working directory # Set working directory