Skip to content

Commit

Permalink
{Packaging} Use python:3.9.6-alpine3.14 as base image (#19287)
Browse files Browse the repository at this point in the history
  • Loading branch information
jiasli authored Aug 25, 2021
1 parent 43412eb commit 14d5784
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
# Licensed under the MIT License. See License.txt in the project root for license information.
#---------------------------------------------------------------------------------------------

ARG PYTHON_VERSION="3.8.9"
ARG PYTHON_VERSION="3.9.6"

FROM python:${PYTHON_VERSION}-alpine3.13
FROM python:${PYTHON_VERSION}-alpine3.14

ARG CLI_VERSION

Expand Down
8 changes: 8 additions & 0 deletions scripts/release/docker/pipeline.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
#!/usr/bin/env bash
#---------------------------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for license information.
#---------------------------------------------------------------------------------------------

set -evx

IMAGE_NAME=clibuild$BUILD_BUILDNUMBER
CLI_VERSION=`cat src/azure-cli/azure/cli/__main__.py | grep __version__ | sed s/' '//g | sed s/'__version__='// | sed s/\"//g`

Expand Down

0 comments on commit 14d5784

Please sign in to comment.