diff options
author | Max Wittig <max.wittig@siemens.com> | 2020-10-08 18:17:51 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-08 18:17:51 +0200 |
commit | 2002098a19f7a9302d373a867ab1a6f87848b6a0 (patch) | |
tree | ff810981f494f66d207d94e44bb1f49faeec7d10 | |
parent | c303dabc720a2f840e7a45644647de59c7e0e7bf (diff) | |
parent | 1fc65e072003a2d1ebc29d741e9cef1860b5ff78 (diff) | |
download | gitlab-2002098a19f7a9302d373a867ab1a6f87848b6a0.tar.gz |
Merge pull request #1204 from python-gitlab/renovate/docker-python-3.x
chore(deps): update python docker tag to v3.9
-rw-r--r-- | .gitlab-ci.yml | 2 | ||||
-rw-r--r-- | Dockerfile | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index cfd14e0..64e42e2 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,4 +1,4 @@ -image: python:3.8 +image: python:3.9 stages: - deploy @@ -1,10 +1,10 @@ -FROM python:3.8-alpine AS build +FROM python:3.9-alpine AS build WORKDIR /opt/python-gitlab COPY . . RUN python setup.py bdist_wheel -FROM python:3.8-alpine +FROM python:3.9-alpine WORKDIR /opt/python-gitlab COPY --from=build /opt/python-gitlab/dist dist/ |