Skip to content

Commit

Permalink
issue #1584 integrate CP_DOCKER_DIST_SRV env to all build and CI scri…
Browse files Browse the repository at this point in the history
…pts (#1585)

* issue #1584 integrate CP_DOCKER_DIST_SRV env to all build and CI scripts

* issue #1584 update jenkins scripts
  • Loading branch information
SilinPavel authored Nov 20, 2020
1 parent 4b1cafd commit 7974e2b
Show file tree
Hide file tree
Showing 33 changed files with 63 additions and 38 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
install: true
language: java
script:
- _BUILD_DOCKER_IMAGE="lifescience/cloud-pipeline:python2.7-centos6" ./gradlew -PbuildNumber=${TRAVIS_BUILD_NUMBER}.${TRAVIS_COMMIT} -Pprofile=release pipe-cli:buildLinux --no-daemon
- _BUILD_DOCKER_IMAGE="${CP_DOCKER_DIST_SRV}lifescience/cloud-pipeline:python2.7-centos6" ./gradlew -PbuildNumber=${TRAVIS_BUILD_NUMBER}.${TRAVIS_COMMIT} -Pprofile=release pipe-cli:buildLinux --no-daemon
- tar -zcf cli-linux-el6.tgz pipe-cli/dist
after_success:
- aws s3 mv cli-linux-el6.tgz s3://cloud-pipeline-oss-builds/temp/${TRAVIS_BUILD_NUMBER}/
Expand Down
2 changes: 1 addition & 1 deletion cloud-pipeline-webdav-client/build_win.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

CP_NODE_WINE_DOCKER="lifescience/cloud-pipeline:node-wine"
CP_NODE_WINE_DOCKER="${CP_DOCKER_DIST_SRV}lifescience/cloud-pipeline:node-wine"
docker pull $CP_NODE_WINE_DOCKER
if [ $? -ne 0 ]; then
echo "Unable to pull $CP_NODE_WINE_DOCKER image, it will be rebuilt"
Expand Down
2 changes: 1 addition & 1 deletion deploy/appveyor/appveyor_pack_dist.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ rm -rf ${API_STATIC_PATH}/*
rm -rf build/install/dist/*


_BUILD_DOCKER_IMAGE="lifescience/cloud-pipeline:python2.7-centos6" ./gradlew -PbuildNumber=${APPVEYOR_BUILD_NUMBER}.${APPVEYOR_REPO_COMMIT} -Pprofile=release pipe-cli:buildLinux --no-daemon -x :pipe-cli:test
_BUILD_DOCKER_IMAGE="${CP_DOCKER_DIST_SRV}lifescience/cloud-pipeline:python2.7-centos6" ./gradlew -PbuildNumber=${APPVEYOR_BUILD_NUMBER}.${APPVEYOR_REPO_COMMIT} -Pprofile=release pipe-cli:buildLinux --no-daemon -x :pipe-cli:test
mv pipe-cli/dist/dist-file/pipe ${API_STATIC_PATH}/pipe-el6
mv pipe-cli/dist/dist-folder/pipe.tar.gz ${API_STATIC_PATH}/pipe-el6.tar.gz

Expand Down
15 changes: 10 additions & 5 deletions deploy/contents/install/app/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -266,14 +266,19 @@ echo
##########
print_ok "[Setting up docker distr registry credentials]"

if [ -z "$CP_DOCKER_DIST_SRV" ]; then
print_warn "CP_DOCKER_DIST_SRV is not set, https://index.docker.io/v1/ is used to authenticate against docker dist registry and create a kube secret"
export CP_DOCKER_DIST_SRV="https://index.docker.io/v1/"
fi

if [ "${$CP_DOCKER_DIST_SRV: -1}" != "/" ]; then
print_warn "CP_DOCKER_DIST_SRV doesn't end with '/': ${CP_DOCKER_DIST_SRV}, will additionally add it."
export CP_DOCKER_DIST_SRV="${CP_DOCKER_DIST_SRV}/"
fi

if [ -z "$CP_DOCKER_DIST_USER" ] || [ -z "$CP_DOCKER_DIST_PASS" ]; then
print_warn "CP_DOCKER_DIST_USER or CP_DOCKER_DIST_PASS is not set, proceeding without registry authentication"
else
if [ -z "$CP_DOCKER_DIST_SRV" ]; then
print_warn "CP_DOCKER_DIST_SRV is not set, https://index.docker.io/v1/ is used to authenticate against docker dist registry and create a kube secret"
export CP_DOCKER_DIST_SRV="https://index.docker.io/v1/"
fi

print_info "Logging docker into $CP_DOCKER_DIST_SRV as $CP_DOCKER_DIST_USER"
docker login "$CP_DOCKER_DIST_SRV" \
-u "$CP_DOCKER_DIST_USER" \
Expand Down
4 changes: 2 additions & 2 deletions deploy/contents/k8s/cp-api-srv/cp-api-srv-dpl.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ spec:
effect: NoSchedule
containers:
- name: cp-api-srv-leader-elector
image: lifescience/cloud-pipeline:leader-elector-$CP_VERSION
image: ${CP_DOCKER_DIST_SRV}lifescience/cloud-pipeline:leader-elector-$CP_VERSION
imagePullPolicy: "Always"
securityContext:
privileged: true
Expand All @@ -37,7 +37,7 @@ spec:
name: cp-config-global

- name: cp-api-srv
image: lifescience/cloud-pipeline:api-srv-$CP_VERSION
image: ${CP_DOCKER_DIST_SRV}lifescience/cloud-pipeline:api-srv-$CP_VERSION
imagePullPolicy: "Always"
securityContext:
privileged: true
Expand Down
2 changes: 1 addition & 1 deletion deploy/contents/k8s/cp-billing-srv/cp-billing-srv-dpl.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ spec:
effect: NoSchedule
containers:
- name: cp-billing-srv
image: lifescience/cloud-pipeline:billing-srv-$CP_VERSION
image: ${CP_DOCKER_DIST_SRV}lifescience/cloud-pipeline:billing-srv-$CP_VERSION
imagePullPolicy: "Always"
command: ["/init"]
envFrom:
Expand Down
2 changes: 1 addition & 1 deletion deploy/contents/k8s/cp-bkp-worker/cp-bkp-worker-dpl.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ spec:
effect: NoSchedule
containers:
- name: cp-bkp-worker-$CP_BKP_SERVICE_NAME
image: lifescience/cloud-pipeline:cp-bkp-worker-$CP_VERSION
image: ${CP_DOCKER_DIST_SRV}lifescience/cloud-pipeline:cp-bkp-worker-$CP_VERSION
imagePullPolicy: "Always"
envFrom:
- configMapRef:
Expand Down
2 changes: 1 addition & 1 deletion deploy/contents/k8s/cp-clair/cp-clair-dpl.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ spec:
effect: NoSchedule
containers:
- name: cp-clair
image: lifescience/cloud-pipeline:clair-$CP_VERSION
image: ${CP_DOCKER_DIST_SRV}lifescience/cloud-pipeline:clair-$CP_VERSION
imagePullPolicy: "Always"
ports:
- containerPort: 8080
Expand Down
2 changes: 1 addition & 1 deletion deploy/contents/k8s/cp-dav/cp-dav-dpl.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ spec:
effect: NoSchedule
containers:
- name: cp-dav
image: lifescience/cloud-pipeline:dav-$CP_VERSION
image: ${CP_DOCKER_DIST_SRV}lifescience/cloud-pipeline:dav-$CP_VERSION
imagePullPolicy: "Always"
securityContext:
privileged: true
Expand Down
2 changes: 1 addition & 1 deletion deploy/contents/k8s/cp-docker-comp/cp-docker-comp-dpl.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ spec:
effect: NoSchedule
containers:
- name: cp-docker-comp
image: lifescience/cloud-pipeline:docker-comp-$CP_VERSION
image: ${CP_DOCKER_DIST_SRV}lifescience/cloud-pipeline:docker-comp-$CP_VERSION
imagePullPolicy: "Always"
command: ["/init"]
ports:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ spec:
effect: NoSchedule
containers:
- name: cp-docker-registry
image: lifescience/cloud-pipeline:registry-$CP_VERSION
image: ${CP_DOCKER_DIST_SRV}lifescience/cloud-pipeline:registry-$CP_VERSION
imagePullPolicy: "Always"
ports:
- containerPort: 443
Expand Down
2 changes: 1 addition & 1 deletion deploy/contents/k8s/cp-edge/cp-edge-dpl.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ spec:
effect: NoSchedule
containers:
- name: cp-edge
image: lifescience/cloud-pipeline:edge-$CP_VERSION
image: ${CP_DOCKER_DIST_SRV}lifescience/cloud-pipeline:edge-$CP_VERSION
imagePullPolicy: "Always"
command: ["/init"]
env:
Expand Down
2 changes: 1 addition & 1 deletion deploy/contents/k8s/cp-git-sync/cp-git-sync-dpl.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ spec:
effect: NoSchedule
containers:
- name: cp-git-sync
image: lifescience/cloud-pipeline:api-srv-$CP_VERSION
image: ${CP_DOCKER_DIST_SRV}lifescience/cloud-pipeline:api-srv-$CP_VERSION
imagePullPolicy: "Always"
command: ["/init-git-sync", "https://$(CP_API_SRV_INTERNAL_HOST):$(CP_API_SRV_INTERNAL_PORT)/pipeline/restapi/", "$(CP_API_JWT_ADMIN)"]
envFrom:
Expand Down
2 changes: 1 addition & 1 deletion deploy/contents/k8s/cp-git/cp-git-dpl.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ spec:
effect: NoSchedule
containers:
- name: cp-git
image: lifescience/cloud-pipeline:git-$CP_VERSION
image: ${CP_DOCKER_DIST_SRV}lifescience/cloud-pipeline:git-$CP_VERSION
imagePullPolicy: "Always"
ports:
- containerPort: ${CP_GITLAB_INTERNAL_PORT}
Expand Down
2 changes: 1 addition & 1 deletion deploy/contents/k8s/cp-idp/cp-idp-pod.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ spec:
effect: NoSchedule
containers:
- name: cp-idp
image: lifescience/cloud-pipeline:idp-$CP_VERSION
image: ${CP_DOCKER_DIST_SRV}lifescience/cloud-pipeline:idp-$CP_VERSION
imagePullPolicy: "Always"
command: ["/init"]
ports:
Expand Down
2 changes: 1 addition & 1 deletion deploy/contents/k8s/cp-node-logger/cp-node-logger-ds.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ spec:
spec:
containers:
- name: cp-node-logger
image: lifescience/cloud-pipeline:node-logger-$CP_VERSION
image: ${CP_DOCKER_DIST_SRV}lifescience/cloud-pipeline:node-logger-$CP_VERSION
imagePullPolicy: "IfNotPresent"
volumeMounts:
- name: kubelet-log
Expand Down
2 changes: 1 addition & 1 deletion deploy/contents/k8s/cp-notifier/cp-notifier-dpl.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ spec:
effect: NoSchedule
containers:
- name: cp-notifier
image: lifescience/cloud-pipeline:notifier-$CP_VERSION
image: ${CP_DOCKER_DIST_SRV}lifescience/cloud-pipeline:notifier-$CP_VERSION
imagePullPolicy: "Always"
command: ["/init"]
envFrom:
Expand Down
2 changes: 1 addition & 1 deletion deploy/contents/k8s/cp-search/cp-search-elk-dpl.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ spec:
effect: NoSchedule
containers:
- name: cp-search-elk
image: lifescience/cloud-pipeline:search-elk-$CP_VERSION
image: ${CP_DOCKER_DIST_SRV}lifescience/cloud-pipeline:search-elk-$CP_VERSION
securityContext:
privileged: true
imagePullPolicy: "IfNotPresent"
Expand Down
2 changes: 1 addition & 1 deletion deploy/contents/k8s/cp-search/cp-search-srv-dpl.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ spec:
effect: NoSchedule
containers:
- name: cp-search-srv
image: lifescience/cloud-pipeline:search-$CP_VERSION
image: ${CP_DOCKER_DIST_SRV}lifescience/cloud-pipeline:search-$CP_VERSION
imagePullPolicy: "Always"
securityContext:
privileged: true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ spec:
effect: NoSchedule
containers:
- name: cp-search-srv
image: lifescience/cloud-pipeline:search-$CP_VERSION
image: ${CP_DOCKER_DIST_SRV}lifescience/cloud-pipeline:search-$CP_VERSION
imagePullPolicy: "Always"
securityContext:
privileged: true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ spec:
effect: NoSchedule
containers:
- name: cp-sensitive-proxy
image: lifescience/cloud-pipeline:tinyproxy-$CP_VERSION
image: ${CP_DOCKER_DIST_SRV}lifescience/cloud-pipeline:tinyproxy-$CP_VERSION
imagePullPolicy: "IfNotPresent"
command: ["/init"]
env:
Expand Down
2 changes: 1 addition & 1 deletion deploy/contents/k8s/cp-share-srv/cp-share-srv-dpl.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ spec:
effect: NoSchedule
containers:
- name: cp-share-srv
image: lifescience/cloud-pipeline:share-srv-$CP_VERSION
image: ${CP_DOCKER_DIST_SRV}lifescience/cloud-pipeline:share-srv-$CP_VERSION
imagePullPolicy: "Always"
securityContext:
privileged: true
Expand Down
2 changes: 1 addition & 1 deletion deploy/contents/k8s/cp-tinyproxy/cp-tinyproxy-dpl.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ spec:
effect: NoSchedule
containers:
- name: cp-tinyproxy
image: lifescience/cloud-pipeline:tinyproxy-$CP_VERSION
image: ${CP_DOCKER_DIST_SRV}lifescience/cloud-pipeline:tinyproxy-$CP_VERSION
imagePullPolicy: "IfNotPresent"
command: ["/init"]
envFrom:
Expand Down
2 changes: 1 addition & 1 deletion deploy/contents/k8s/cp-vm-monitor/cp-vm-monitor-dpl.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ spec:
effect: NoSchedule
containers:
- name: cp-vm-monitor
image: lifescience/cloud-pipeline:vm-monitor-$CP_VERSION
image: ${CP_DOCKER_DIST_SRV}lifescience/cloud-pipeline:vm-monitor-$CP_VERSION
imagePullPolicy: "Always"
securityContext:
privileged: true
Expand Down
16 changes: 13 additions & 3 deletions deploy/docker/build-dockers.sh
Original file line number Diff line number Diff line change
Expand Up @@ -95,20 +95,30 @@ if [ -z "$DOCKERS_VERSION" ]; then
DOCKERS_VERSION="latest"
fi

if [ -z "$CP_DOCKER_DIST_SRV" ]; then
echo "CP_DOCKER_DIST_SRV is not set, https://index.docker.io/v1/ is used to authenticate against docker dist registry and create a kube secret"
export CP_DOCKER_DIST_SRV="https://index.docker.io/v1/"
fi

if [ "${$CP_DOCKER_DIST_SRV: -1}" != "/" ]; then
echo "CP_DOCKER_DIST_SRV doesn't end with '/': ${CP_DOCKER_DIST_SRV}, will additionally add it."
export CP_DOCKER_DIST_SRV="${CP_DOCKER_DIST_SRV}/"
fi

if [ -z "$CP_DOCKER_DIST_USER" ] || [ -z "$CP_DOCKER_DIST_PASS" ]; then
echo "CP_DOCKER_DIST_USER or CP_DOCKER_DIST_PASS is not set, proceeding without registry authentication"
else
docker login -u $CP_DOCKER_DIST_USER -p $CP_DOCKER_DIST_PASS
docker login ${CP_DOCKER_DIST_SRV} -u $CP_DOCKER_DIST_USER -p $CP_DOCKER_DIST_PASS
if [ $? -ne 0 ]; then
echo "Error occured while logging into the distr docker regsitry, exiting"
exit 1
fi
fi

export CP_DIST_REPO_NAME=${CP_DIST_REPO_NAME:-"$CP_DOCKER_DIST_USER/cloud-pipeline"}
export CP_DIST_REPO_NAME=${CP_DIST_REPO_NAME:-"${CP_DOCKER_DIST_SRV}${CP_DOCKER_DIST_USER}/cloud-pipeline"}

if [ -z "$CP_DIST_REPO_NAME" ]; then
CP_DIST_REPO_NAME="lifescience/cloud-pipeline"
CP_DIST_REPO_NAME="${CP_DOCKER_DIST_SRV}lifescience/cloud-pipeline"
fi

########################
Expand Down
2 changes: 1 addition & 1 deletion deploy/docker/cp-api-srv/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
# limitations under the License.

# docker build . \
# -t lifescience/cloud-pipeline:api-srv-latest \
# -t ${CP_DOCKER_DIST_SRV}lifescience/cloud-pipeline:api-srv-latest \
# --build-arg CP_API_DIST_URL="https://..." \
# --build-arg OPENSSL_DIST_URL="https://..." \
# --build-arg OSSLSIGNCODE_DIST_URL="https://..."
Expand Down
2 changes: 1 addition & 1 deletion deploy/docker/cp-share-srv/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
# limitations under the License.

# docker build . \
# -t lifescience/cloud-pipeline:share-srv-latest \
# -t ${CP_DOCKER_DIST_SRV}lifescience/cloud-pipeline:share-srv-latest \
# --build-arg CP_API_DIST_URL="https://..."

FROM centos:7
Expand Down
1 change: 1 addition & 0 deletions deploy/jenkins/jenkins-jobs/build-pipectl/build-pipectl.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ export CP_VERSION_FULL="${dist_major}.${dist_minor}.${dist_patch}.${dist_build}.
export CP_API_DIST_URL="$API_DIST_URL"
export CP_PIPECTL_DIST_FILE_NAME="pipectl.$CP_VERSION_FULL"
export CP_PIPECTL_DIST="$WORKSPACE/build/$CP_PIPECTL_DIST_FILE_NAME"
export CP_DOCKER_DIST_SRV=quay.io/

bash build.sh -o $CP_PIPECTL_DIST \
-p $WORKSPACE/cloud-pipeline/workflows/pipe-templates/__SYSTEM/data_loader \
Expand Down
4 changes: 4 additions & 0 deletions deploy/jenkins/jenkins-jobs/deploy-dev-aws/run-pipectl.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,12 @@ if ! kubectl version &> /dev/null || ! kubectl get po 2>/dev/null | grep -q cp-a
unset _ERASE_DATA
fi

#Export docker registry where all containers are stored
export CP_DOCKER_DIST_SRV=${CP_DOCKER_DIST_SRV}

sudo chmod +x $DEPLOY_DIR/pipectl && \
sudo -E $DEPLOY_DIR/pipectl install \
-env CP_DOCKER_DIST_SRV=${CP_DOCKER_DIST_SRV} \
-env CP_AWS_KMS_ARN="$CP_AWS_KMS_ARN" \
-env CP_AWS_ACCESS_KEY_ID="$CP_AWS_ACCESS_KEY_ID" \
-env CP_HA_DEPLOY_ENABLED="${CP_AWS_HA_ENABLED:-false}" \
Expand Down
4 changes: 4 additions & 0 deletions deploy/jenkins/jenkins-jobs/deploy-dev-az/run-pipectl.sh
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,9 @@ if [ $? -ne 0 ]; then
exit 1
fi

#Export docker registry where all containers are stored
export CP_DOCKER_DIST_SRV=${CP_DOCKER_DIST_SRV}

# Grab pipectl binary
wget -q "$PIPECTL_DIST_URL" -O "${DEPLOY_DIR}/pipectl"
if [ $? -ne 0 ]; then
Expand All @@ -61,6 +64,7 @@ chmod +x "${DEPLOY_DIR}/pipectl"
# $CP_AZURE_KUBE_MASTER_DOCKER_PATH and $CP_AZURE_KUBE_MASTER_ETCD_HOST_PATH
# This allows to overcome disk I/O issues with a single drive
${DEPLOY_DIR}/pipectl install \
-env CP_DOCKER_DIST_SRV=${CP_DOCKER_DIST_SRV} \
-env CP_CLUSTER_SSH_KEY="${DOLLAR}{AZURE_SSH_KEY_S3_LOCAL}" \
-env CP_CLUSTER_SSH_PUB="${DOLLAR}{AZURE_SSH_PUB_S3_LOCAL}" \
-env CP_CLOUD_CREDENTIALS_FILE="${DOLLAR}{AZURE_JSON_S3_LOCAL}" \
Expand Down
3 changes: 2 additions & 1 deletion deploy/jenkins/run-jenkins.env
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@ JENKINS_PORT=
JENKINS_HOME=
JENKINS_ENV=

# Dockerhup setup
# Dockerhub setup
CP_DOCKER_DIST_SRV=
DOCKER_USER=
DOCKER_PASS=

Expand Down
4 changes: 2 additions & 2 deletions pipe-cli/build_windows.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
# Step 1: Build NTLM APS with Python 2
#######################################

CP_PYINSTALL_WIN32_PY2_DOCKER="lifescience/cloud-pipeline:pyinstaller-win32-py2"
CP_PYINSTALL_WIN32_PY2_DOCKER="${CP_DOCKER_DIST_SRV}lifescience/cloud-pipeline:pyinstaller-win32-py2"
docker pull $CP_PYINSTALL_WIN32_PY2_DOCKER
if [ $? -ne 0 ]; then
echo "Unable to pull $CP_PYINSTALL_WIN32_PY2_DOCKER image, it will be rebuilt"
Expand Down Expand Up @@ -67,7 +67,7 @@ rm -f $_BUILD_SCRIPT_NAME
# Step 2: pipe CLI
#######################################

CP_PYINSTALL_WIN64_DOCKER="lifescience/cloud-pipeline:pyinstaller-win64"
CP_PYINSTALL_WIN64_DOCKER="${CP_DOCKER_DIST_SRV}lifescience/cloud-pipeline:pyinstaller-win64"
docker pull $CP_PYINSTALL_WIN64_DOCKER
if [ $? -ne 0 ]; then
echo "Unable to pull $CP_PYINSTALL_WIN64_DOCKER image, it will be rebuilt"
Expand Down
2 changes: 1 addition & 1 deletion pipe-cli/docker/centos6/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

# Used to build "lifescience/cloud-pipeline:python2.7-centos6" for the el6 pipe distribution
# Used to build "${CP_DOCKER_DIST_SRV}lifescience/cloud-pipeline:python2.7-centos6" for the el6 pipe distribution
FROM centos:6
RUN yum install gcc \
openssl-devel \
Expand Down

0 comments on commit 7974e2b

Please sign in to comment.