Spaces:
Running
on
Zero
Running
on
Zero
File size: 1,444 Bytes
e3af00f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 |
#!/usr/bin/env bash
# Copyright (c) 2023, NVIDIA CORPORATION. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
export TRITON_SERVER_IMAGE=$1
export PYTRITON_IMAGE_NAME=$2
export PLATFORM=$3
set -x
# check if docker image name has docker registry prefix to not try to pull development image
PULL_RESULT="1"
if [[ "${PYTRITON_IMAGE_NAME}" == *"/"* && "${PYTRITON_IMAGE_REBUILD}" != "1" ]]; then
docker pull -q --platform "${PLATFORM}" "${PYTRITON_IMAGE_NAME}"
PULL_RESULT=$?
fi
# fetch base image earlier as in some environments there are issues with pulling base images while building
docker pull -q --platform "${PLATFORM}" "${TRITON_SERVER_IMAGE}"
if [[ "${PULL_RESULT}" != "0" ]]; then
docker buildx build --force-rm \
--platform "${PLATFORM}" \
--build-arg FROM_IMAGE="${TRITON_SERVER_IMAGE}" \
--file scripts/Dockerfile.build \
--tag "${PYTRITON_IMAGE_NAME}" ${DOCKER_BUILD_ADDITIONAL_FLAGS} .
fi |