Skip to content

Commit 6321c1b

Browse files
authored
Fix missing character in Python 3.8 (#204)
1 parent ad752cc commit 6321c1b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

build/python.sh

+4-4
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,10 @@ function build {
4040
test_image "${REGISTRY}python:${IMAGE_TAG_VERSION}-python3.7-appservice"
4141

4242
# build python:$IMAGE_TAG_VERSION.x-python3.8 and python:$IMAGE_TAG_VERSION.x-python3.8-appservice
43-
docker build -t "${REGISTRY}python:${IMAGE_TAG_VERSION}-python3.8-deps" -f $DIR/../host/$DOCKERFILE_BASE/amd64/python/python3-deps.Dockerfile $DIR/../host/$DOCKERFILE_BASE/amd64/python
44-
docker build -t "${REGISTRY}python:${IMAGE_TAG_VERSION}-python3.8-buildenv" -f $DIR/../host/$DOCKERFILE_BASE/amd64/python/python3-buildenv.Dockerfile --build-arg BASE_PYTHON_IMAGE="${REGISTRY}python:${IMAGE_TAG_VERSION}-python3.8-deps" $DIR/../host/$DOCKERFILE_BASE/amd64/python
45-
docker build -t "${REGISTRY}python:${IMAGE_TAG_VERSION}-python3.8" -f $DIR/../host/$DOCKERFILE_BASE/amd64/python/python3.Dockerfile --build-arg BASE_IMAGE="${REGISTRY}base:${IMAGE_TAG_VERSION}" --build-arg BASE_PYTHON_IMAGE="${REGISTRY}python:${IMAGE_TAG_VERSION}-python3.8-deps" $DIR/../host/$DOCKERFILE_BASE/amd64/python
46-
docker build -t "${REGISTRY}python:${IMAGE_TAG_VERSION}-python3.8-appservice" -f $DIR/../host/$DOCKERFILE_BASE/amd64/appservice/python3.Dockerfile --build-arg BASE_IMAGE="${REGISTRY}python:${IMAGE_TAG_VERSION}-python3.8" $DIR/../host/$DOCKERFILE_BASE/amd64/appservice
43+
docker build -t "${REGISTRY}python:${IMAGE_TAG_VERSION}-python3.8-deps" -f $DIR/../host/$DOCKERFILE_BASE/amd64/python/python38-deps.Dockerfile $DIR/../host/$DOCKERFILE_BASE/amd64/python
44+
docker build -t "${REGISTRY}python:${IMAGE_TAG_VERSION}-python3.8-buildenv" -f $DIR/../host/$DOCKERFILE_BASE/amd64/python/python38-buildenv.Dockerfile --build-arg BASE_PYTHON_IMAGE="${REGISTRY}python:${IMAGE_TAG_VERSION}-python3.8-deps" $DIR/../host/$DOCKERFILE_BASE/amd64/python
45+
docker build -t "${REGISTRY}python:${IMAGE_TAG_VERSION}-python3.8" -f $DIR/../host/$DOCKERFILE_BASE/amd64/python/python38.Dockerfile --build-arg BASE_IMAGE="${REGISTRY}base:${IMAGE_TAG_VERSION}" --build-arg BASE_PYTHON_IMAGE="${REGISTRY}python:${IMAGE_TAG_VERSION}-python3.8-deps" $DIR/../host/$DOCKERFILE_BASE/amd64/python
46+
docker build -t "${REGISTRY}python:${IMAGE_TAG_VERSION}-python3.8-appservice" -f $DIR/../host/$DOCKERFILE_BASE/amd64/appservice/python38.Dockerfile --build-arg BASE_IMAGE="${REGISTRY}python:${IMAGE_TAG_VERSION}-python3.8" $DIR/../host/$DOCKERFILE_BASE/amd64/appservice
4747
test_image "${REGISTRY}python:${IMAGE_TAG_VERSION}-python3.8"
4848
test_image "${REGISTRY}python:${IMAGE_TAG_VERSION}-python3.8-appservice"
4949

0 commit comments

Comments
 (0)