Skip to content

Commit 919f193

Browse files
committed
Per review, renaming container notice generation script
Signed-off-by: Parker Drake <[email protected]>
1 parent 9ef1354 commit 919f193

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

docker/Dockerfile.multi

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -84,8 +84,8 @@ RUN GITHUB_MIRROR=${GITHUB_MIRROR} bash ./install_ucx.sh && \
8484
ARG TRT_LLM_VER
8585
ARG TARGETARCH
8686
COPY 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

9090
FROM ${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
182182
COPY 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

185185
FROM wheel AS tritonbuild
186186

scripts/generate_oss_attribution.sh renamed to scripts/generate_container_oss_attribution.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
set -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

88
show_usage() {
99
local error_msg="${1}"

0 commit comments

Comments
 (0)