blob: 34136c1ba0864d312e5989963ab72305231d96a7 [file] [log] [blame]
#!/bin/bash
#
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you 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.
#
# Create all the Docker images for variations of Python versions
set -e
PYTHON_VERSIONS=(
'2.7 cp27-cp27mu'
'2.7 cp27-cp27m'
'3.4 cp34-cp34m'
'3.5 cp35-cp35m'
'3.6 cp36-cp36m'
'3.7 cp37-cp37m'
'3.8 cp38-cp38'
)
for line in "${PYTHON_VERSIONS[@]}"; do
read -r -a PY <<< "$line"
PYTHON_VERSION=${PY[0]}
PYTHON_SPEC=${PY[1]}
echo "--------- Build Docker image for $PYTHON_VERSION -- $PYTHON_SPEC"
IMAGE_NAME=pulsar-build:manylinux-$PYTHON_SPEC
docker build -t $IMAGE_NAME . \
--build-arg PYTHON_VERSION=$PYTHON_VERSION \
--build-arg PYTHON_SPEC=$PYTHON_SPEC
echo "==== Successfully built image $IMAGE_NAME"
done