From 29d76e276ccbe4d64c945d0366241b77b9818000 Mon Sep 17 00:00:00 2001 From: Derek Holloway Date: Thu, 16 Apr 2026 19:02:36 -0700 Subject: [PATCH] Change from ubuntu to alpine --- comfyui-rocm-dockerfile | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/comfyui-rocm-dockerfile b/comfyui-rocm-dockerfile index 0bf9176..9e2e8c9 100644 --- a/comfyui-rocm-dockerfile +++ b/comfyui-rocm-dockerfile @@ -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