summaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
authorlikui <likui@yovole.com>2022-06-01 16:35:00 +0800
committerStephen Finucane <sfinucan@redhat.com>2022-07-04 17:48:55 +0100
commit4e769f0ed02eb9b5179258483cc9b08efe81842b (patch)
tree1977f4bcedd1febe7713da8ea455389f71a285a9 /Dockerfile
parente49ad1795b9dd57d5a82fb6f8f365fa20041cf29 (diff)
downloadpython-openstackclient-4e769f0ed02eb9b5179258483cc9b08efe81842b.tar.gz
Drop support for Python 3.6, 3.7
Python 3.6 and Python 3.7 support has been dropped since Zed [1]. This necessitates changes our jobs to build and publish docker images since those currently use Python 3.6. We now use Python 3.9. [1] https://governance.openstack.org/tc/reference/runtimes/zed.html Change-Id: I228b7ff6691a025f1ba9b7d9449f294868942151 Co-authored-by: Stephen Finucane <stephenfin@redhat.com>
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Dockerfile b/Dockerfile
index bf5de3c7..90f7fd3b 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -13,12 +13,12 @@
# See the License for the specific language governing permissions and
# limitations under the License.
-FROM docker.io/opendevorg/python-builder:3.7 as builder
+FROM docker.io/opendevorg/python-builder:3.9 as builder
COPY . /tmp/src
RUN assemble
-FROM docker.io/opendevorg/python-base:3.7
+FROM docker.io/opendevorg/python-base:3.9
COPY --from=builder /output/ /output
RUN /output/install-from-bindep