Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions container-images/musa/Containerfile
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
ARG VERSION=rc4.0.1
ARG VERSION=rc4.2.0
ARG UBUNTU_VERSION=22.04
# Base image with MUSA for compilation
FROM docker.io/mthreads/musa:${VERSION}-mudnn-devel-ubuntu${UBUNTU_VERSION} AS builder
FROM docker.io/mthreads/musa:${VERSION}-devel-ubuntu${UBUNTU_VERSION}-amd64 AS builder

COPY --chmod=755 ../scripts /usr/bin
RUN build_llama_and_whisper.sh "musa"

# Final runtime image
FROM docker.io/mthreads/musa:${VERSION}-mudnn-runtime-ubuntu${UBUNTU_VERSION}
FROM docker.io/mthreads/musa:${VERSION}-runtime-ubuntu${UBUNTU_VERSION}-amd64

# Copy the entire installation directory from the builder
COPY --from=builder /tmp/install /usr
Expand Down
Loading