Skip to content

Commit ddb39a1

Browse files
committed
Add missing ARG, fix warnings
1 parent b59b55c commit ddb39a1

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/container/Dockerfile.base

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,24 +8,25 @@ ARG CLANG_VERSION=18
88
## Obtain GCP's NCCL TCPx plugin
99
###############################################################################
1010

11-
FROM us-docker.pkg.dev/gce-ai-infra/gpudirect-tcpx/nccl-plugin-gpudirecttcpx:v3.1.10 as tcpx-installer-amd64
11+
FROM us-docker.pkg.dev/gce-ai-infra/gpudirect-tcpx/nccl-plugin-gpudirecttcpx:v3.1.10 AS tcpx-installer-amd64
1212

1313
# make a stub arm64 container because GCP does not provide an arm64 version of the plugin
14-
FROM ubuntu as tcpx-installer-arm64
14+
FROM ubuntu AS tcpx-installer-arm64
1515
RUN <<"OUTEREOF" bash -ex
1616
mkdir -p /scripts /var/lib/tcpx/lib64
1717
echo '#!/bin/bash' > /scripts/container_entry.sh
1818
chmod +x /scripts/container_entry.sh
1919
OUTEREOF
2020

21-
FROM tcpx-installer-${TARGETARCH} as tcpx-installer
21+
FROM tcpx-installer-${TARGETARCH} AS tcpx-installer
2222
RUN /scripts/container_entry.sh install
2323

2424
###############################################################################
2525
## Build base image
2626
###############################################################################
2727

2828
FROM ${BASE_IMAGE}
29+
ARG BASE_IMAGE
2930
ARG GIT_USER_EMAIL
3031
ARG GIT_USER_NAME
3132
ARG CLANG_VERSION

0 commit comments

Comments
 (0)