Update Pulumi python docker image to python 3.9 (#6706)

This commit is contained in:
Ben Stovold 2021-04-08 00:47:02 +10:00 committed by GitHub
parent b6c1319b4e
commit f4b7a5a6d4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 2 deletions

View file

@ -3,6 +3,9 @@
### Improvements
- [automation/python] Update pulumi python docker image to python 3.9
[#6706](https://github.com/pulumi/pulumi/pull/6706)
- [sdk/nodejs] Add program side caching for dynamic provider serialization behind env var
[#6673](https://github.com/pulumi/pulumi/pull/6673)

View file

@ -2,7 +2,7 @@
# Interim container so we can copy pulumi binaries
# Must be defined first
ARG PULUMI_VERSION=latest
ARG RUNTIME_VERSION=3.7.7
ARG RUNTIME_VERSION=3.9
ARG PULUMI_IMAGE=pulumi/pulumi-base
FROM ${PULUMI_IMAGE}:${PULUMI_VERSION} as pulumi

View file

@ -2,7 +2,7 @@
# Interim container so we can copy pulumi binaries
# Must be defined first
ARG PULUMI_VERSION=latest
ARG RUNTIME_VERSION=3.8.3
ARG RUNTIME_VERSION=3.9
ARG PULUMI_IMAGE=pulumi/pulumi-base
FROM ${PULUMI_IMAGE}:${PULUMI_VERSION}-alpine as pulumi