please god work
Some checks failed
Build and Publish Docker Images / build-cpu (push) Waiting to run
Build and Publish Docker Images / build-cuda (push) Waiting to run
Build and Publish Docker Images / build-rocm (push) Failing after 2m5s

This commit is contained in:
2026-06-12 17:06:52 -06:00
commit b90e94b83b
18 changed files with 731 additions and 0 deletions

21
Dockerfile.rocm Normal file
View File

@@ -0,0 +1,21 @@
FROM rocm/pytorch:py3.11-rocm67-ubuntu2404
WORKDIR /app
RUN apt-get update && apt-get install -y --no-install-recommends \
build-essential \
&& rm -rf /var/lib/apt/lists/*
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY wyoming_glados/ ./wyoming_glados/
COPY download_model.py .
COPY entrypoint.sh .
RUN chmod +x entrypoint.sh
RUN mkdir -p /data
EXPOSE 10200
ENTRYPOINT ["/app/entrypoint.sh"]