Files
glados-ladosp-tts/Dockerfile.rocm
taco 84c22609bd
All checks were successful
Build and Publish Docker Images / build-cuda (push) Successful in 5m8s
Build and Publish Docker Images / build-cpu (push) Successful in 10m30s
Build and Publish Docker Images / build-rocm (push) Successful in 10m29s
fix rocm build
2026-06-12 17:10:55 -06:00

22 lines
467 B
Docker

FROM rocm/pytorch:rocm7.1.1_ubuntu22.04_py3.11_pytorch_release_2.10.0
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"]