File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -84,8 +84,8 @@ RUN GITHUB_MIRROR=${GITHUB_MIRROR} bash ./install_ucx.sh && \
8484ARG TRT_LLM_VER
8585ARG TARGETARCH
8686COPY scripts/generate_oss_attribution.sh /tmp/generate_oss_attribution.sh
87- RUN bash /tmp/generate_oss_attribution .sh "devel" "${TRT_LLM_VER}" "${TARGETARCH}" && \
88- rm /tmp/generate_oss_attribution .sh
87+ RUN bash /tmp/generate_container_oss_attribution .sh "devel" "${TRT_LLM_VER}" "${TARGETARCH}" && \
88+ rm /tmp/generate_container_oss_attribution .sh
8989
9090FROM ${TRITON_IMAGE}:${TRITON_BASE_TAG} AS triton
9191
@@ -180,7 +180,7 @@ ENV TRT_LLM_GIT_COMMIT=${GIT_COMMIT} \
180180
181181# Generate OSS attribution file for release image
182182COPY scripts/generate_oss_attribution.sh /tmp/generate_oss_attribution.sh
183- RUN bash /tmp/generate_oss_attribution .sh "release" "${TRT_LLM_VER}" "${TARGETARCH}" && rm /tmp/generate_oss_attribution .sh
183+ RUN bash /tmp/generate_container_oss_attribution .sh "release" "${TRT_LLM_VER}" "${TARGETARCH}" && rm /tmp/generate_container_oss_attribution .sh
184184
185185FROM wheel AS tritonbuild
186186
Original file line number Diff line number Diff line change 33set -e
44
55# Generate open source attribution file with parameterized URL
6- # Usage: ./generate_oss_attribution .sh <image_name> <tag> <arch> [output_file]
6+ # Usage: ./generate_container_oss_attribution .sh <image_name> <tag> <arch> [output_file]
77
88show_usage () {
99 local error_msg=" ${1} "
You can’t perform that action at this time.
0 commit comments