fix.
Some checks failed
Build and Push Images / determine-version (push) Has been cancelled
Build and Push Images / build (Dockerfile.ray-worker-intel, intel) (push) Has been cancelled
Build and Push Images / build (Dockerfile.ray-worker-nvidia, nvidia) (push) Has been cancelled
Build and Push Images / build (Dockerfile.ray-worker-rdna2, rdna2) (push) Has been cancelled
Build and Push Images / build (Dockerfile.ray-worker-strixhalo, strixhalo) (push) Has been cancelled
Build and Push Images / Release (push) Has been cancelled
Build and Push Images / Notify (push) Has been cancelled

This commit is contained in:
2026-02-09 10:43:56 -05:00
parent 2e3e014b80
commit 2c38cce20c

View File

@@ -118,7 +118,9 @@ RUN echo "import strixhalo_vram_fix" > \
# Pre-create aiter JIT build cache directory. # Pre-create aiter JIT build cache directory.
# The vLLM ROCm aiter package compiles kernels on first import and needs # The vLLM ROCm aiter package compiles kernels on first import and needs
# this directory writable by the ray user (uid 1000). # this directory writable by the ray user (uid 1000).
RUN mkdir -p /home/ray/.aiter USER root
RUN mkdir -p /home/ray/.aiter && chown 1000:100 /home/ray/.aiter
USER ray
# Copy entrypoint script (ray-serve-apps is installed from PyPI at runtime) # Copy entrypoint script (ray-serve-apps is installed from PyPI at runtime)
COPY --chown=1000:100 --chmod=755 dockerfiles/ray-entrypoint.sh /app/ray-entrypoint.sh COPY --chown=1000:100 --chmod=755 dockerfiles/ray-entrypoint.sh /app/ray-entrypoint.sh