From 6116d507cf2411d62294b6cf8400e517076dc520 Mon Sep 17 00:00:00 2001 From: Dimitri Gnidash Date: Mon, 5 Aug 2024 12:58:50 -0400 Subject: [PATCH] Create a no dash version --- dockerfile/tt-metalium.Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dockerfile/tt-metalium.Dockerfile b/dockerfile/tt-metalium.Dockerfile index dd28bf7926ea..6d15e6fd503a 100644 --- a/dockerfile/tt-metalium.Dockerfile +++ b/dockerfile/tt-metalium.Dockerfile @@ -4,11 +4,11 @@ FROM ghcr.io/tenstorrent/tt-metal/tt-metalium/ubuntu-20.04-amd64:${IMAGE_TAG} ARG ARCH_NAME=wormhole_b0 ARG ARCH_NAME_IN_URL=wormhole.b0 -ARG VERSION=0.51.0rc19 +ARG VERSION=0.51.0-rc19 ENV ARCH_NAME=${ARCH_NAME} ENV VERSION=${VERSION} -RUN wget https://github.com/tenstorrent/tt-metal/releases/download/v${VERSION}/metal_libs-${VERSION}+${ARCH_NAME_IN_URL}-cp38-cp38-linux_x86_64.whl +RUN VERSION_NO_DASH=$(echo "$VERSION" | sed 's/-//g') && wget https://github.com/tenstorrent/tt-metal/releases/download/v${VERSION}/metal_libs-${VERSION_NO_DASH}+${ARCH_NAME_IN_URL}-cp38-cp38-linux_x86_64.whl RUN pip3 install metal_libs-${VERSION}+${ARCH_NAME_IN_URL}-cp38-cp38-linux_x86_64.whl CMD ["tail", "-f", "/dev/null"]