summaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
authorTobias Henkel <tobias.henkel@bmw.de>2020-05-12 20:52:31 +0200
committerTobias Henkel <tobias.henkel@bmw.de>2020-09-25 11:18:11 +0200
commit429d73e93d83c556166a787ccedd4682a436637e (patch)
treedc5f6238800d10374a0db7cd9e2e1b234c6c5677 /Dockerfile
parente4ee30209a0ffd791d9d05a72969b5f70480beb5 (diff)
downloadzuul-429d73e93d83c556166a787ccedd4682a436637e.tar.gz
Update images to use python 3.8
After dropping support of Ansible 2.7 which has compatibility issues with python 3.8 we now can finally upgrade to Python 3.8 which has improvements regarding performance and memory usage. Change-Id: I346c2fe22f8409c600a3ee2a229369778e3cabd6
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Dockerfile b/Dockerfile
index c457852b0..fdb0b2ea9 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -13,7 +13,7 @@
# 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.8 as builder
ENV DEBIAN_FRONTEND=noninteractive
# Optional location of Zuul API endpoint.
@@ -47,7 +47,7 @@ RUN mkdir /tmp/openshift-install \
&& echo $OPENSHIFT_SHA /tmp/openshift-install/openshift-client.tgz | sha256sum --check \
&& tar xvfz openshift-client.tgz --strip-components=1 -C /tmp/openshift-install
-FROM docker.io/opendevorg/python-base:3.7 as zuul
+FROM docker.io/opendevorg/python-base:3.8 as zuul
ENV DEBIAN_FRONTEND=noninteractive
COPY --from=builder /output/ /output