Skip to content

Commit

Permalink
clean up commented lines
Browse files Browse the repository at this point in the history
  • Loading branch information
jshihstsci committed Jan 8, 2024
1 parent f7094cf commit 1e32703
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions terraform/deploy_docker_builds.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ fi
# naming is confusing here but "modeling" directory plus "training" image is correct
cd ${CALCLOUD_BUILD_DIR}/modeling
source hst_admin_role_shim.sh cert-update
#cp /etc/pki/ca-trust/extracted/pem/tls-ca-bundle.pem certs/tls-ca-bundle.pem # copy the cert from CI node AMI
set -o pipefail && docker build -f Dockerfile -t ${TRAINING_DOCKER_IMAGE} .
training_docker_build_status=$?
if [[ $training_docker_build_status -ne 0 ]]; then
Expand All @@ -33,7 +32,6 @@ fi
# jobPredict lambda env
cd ${CALCLOUD_BUILD_DIR}/lambda/JobPredict
source hst_admin_role_shim.sh cert-update
#cp /etc/pki/ca-trust/extracted/pem/tls-ca-bundle.pem certs/tls-ca-bundle.pem # copy the cert from CI node AMI
set -o pipefail && docker build -f Dockerfile -t ${PREDICT_DOCKER_IMAGE} .
model_docker_build_status=$?
if [[ $model_docker_build_status -ne 0 ]]; then
Expand All @@ -44,7 +42,6 @@ fi
# caldp image
cd ${CALDP_BUILD_DIR}
source hst_admin_role_shim.sh cert-update
#cp /etc/ssl/certs/ca-bundle.crt tls-ca-bundle.pem # copy the cert from CI node AMI
set -o pipefail && docker build -f Dockerfile -t ${CALDP_DOCKER_IMAGE} --build-arg CAL_BASE_IMAGE="${CAL_BASE_IMAGE}" .
caldp_docker_build_status=$?
if [[ $caldp_docker_build_status -ne 0 ]]; then
Expand Down

0 comments on commit 1e32703

Please sign in to comment.