Change from ubuntu to alpine
Docker Build and Release Upload / build-rocm (push) Failing after 2m40s
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:02:36 -07:00
parent bf459496fe
commit 29d76e276c
+6 -6
View File
@@ -7,13 +7,13 @@ ENV TORCH_ROCM_AOTRITON_ENABLE_EXPERIMENTAL=1
ENV PYTHONUNBUFFERED=1
# Install system dependencies
RUN apt-get update && apt-get install -y \
python3-pip \
python3-venv \
RUN apk add --no-cache \
python3 \
py3-pip \
git \
libgl1-mesa-glx \
libglib2.0-0 \
&& rm -rf /var/lib/apt/lists/*
mesa-gles \
glib \
&& rm -rf /var/cache/apk/*
# Set working directory
WORKDIR /app