vllm - 💡(How to fix) Fix [Feature]: upstream nightly rocm docker [4 comments, 3 participants]

Official PRs (…)
ON THIS PAGE

Recommended Tools

×6

Utilities matched from this issue’s tags and category — try them while you read without losing context.

GitHub issue graph ai analysis

Paste a GitHub issue URL. We fetch that issue, discover linked issues from bodies/comments/timeline, collect linked pull requests, and produce a structured English report.

The report is written in English Markdown for sharing and archival.

Helpful · Quick feedback

Loading…
GitHub stats
vllm-project/vllm#36704Fetched 2026-04-08 00:35:17
View on GitHub
Comments
4
Participants
3
Timeline
21
Reactions
0
Timeline (top)
mentioned ×5subscribed ×5commented ×4project_v2_item_status_changed ×3
RAW_BUFFERClick to expand / collapse

🚀 The feature, motivation and pitch

currently only cuda has nightly docker images . if rocm wants to be first class, it should have it too

<img width="588" height="521" alt="Image" src="https://github.com/user-attachments/assets/4fcd26c5-f46b-473c-84bf-623784fdcc37" />

Alternatives

build from source

Additional context

No response

Before submitting a new issue...

  • Make sure you already searched for relevant issues, and asked the chatbot living at the bottom right corner of the documentation page, which can answer lots of frequently asked questions.

extent analysis

Fix Plan

To provide nightly Docker images for ROCm, we need to create a Dockerfile and set up a CI/CD pipeline.

Steps

  • Create a Dockerfile for ROCm with the necessary dependencies and configurations.
  • Set up a CI/CD pipeline using a tool like GitHub Actions to build and push the Docker image nightly.
  • Configure the pipeline to use the Dockerfile and push the image to a Docker registry like Docker Hub.

Example Code

# Dockerfile for ROCm
FROM ubuntu:20.04

# Install dependencies
RUN apt-get update && apt-get install -y \
    rocminfo \
    rocm-dev \
    hip-sdk

# Set environment variables
ENV ROCM_HOME=/opt/rocm
ENV PATH=$ROCM_HOME/bin:$PATH
ENV LD_LIBRARY_PATH=$ROCM_HOME/lib:$LD_LIBRARY_PATH

# Verify ROCm installation
RUN rocminfo
# GitHub Actions workflow file
name: Build and Push ROCm Docker Image

on:
  schedule:
    - cron: 0 0 * * *

jobs:
  build-and-push:
    runs-on: ubuntu-latest
    steps:
      - name: Checkout code
        uses: actions/checkout@v2
      - name: Login to Docker Hub
        uses: docker/login-action@v1
        with:
          username: ${{ secrets.DOCKER_USERNAME }}
          password: ${{ secrets.DOCKER_PASSWORD }}
      - name: Build and push Docker image
        run: |
          docker build -t my-rocm-image .
          docker tag my-rocm-image ${{ secrets.DOCKER_USERNAME }}/my-rocm-image:latest
          docker push ${{ secrets.DOCKER_USERNAME }}/my-rocm-image:latest

Verification

To verify that the fix worked, check the Docker Hub registry for the newly pushed image and try pulling and running it on a machine with Docker installed.

Extra Tips

  • Make sure to replace the DOCKER_USERNAME and DOCKER_PASSWORD secrets with your actual Docker Hub credentials.
  • You can customize the Dockerfile and GitHub Actions workflow file to fit your specific needs.

Vote matrix · Quick signals

Works
Did the solution work? Tap to confirm.
Easy Fix
Was it a quick fix?
Time Saver
Did it save you time?
Blocking
Was it severely blocking?
Common Issue
Are others likely hitting this too?
Flaky / Intermittent
Is it intermittent?
Verified / Reproducible
Can you reproduce it reliably?
Loading…

Still need to ship something?

×6

Another batch ranked right after the header list — different links, same matching logic.

Back to top recommendations

TRENDING

vllm - 💡(How to fix) Fix [Feature]: upstream nightly rocm docker [4 comments, 3 participants]