diff options
author | Nejc Habjan <hab.nejc@gmail.com> | 2021-10-06 09:36:21 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-06 09:36:21 +0200 |
commit | d97f79d0ec185014747a1e1b9c1f9e78db68dd51 (patch) | |
tree | c1dd335af6d60e1bd5543b4af81e7fec7fc46b98 | |
parent | 5c17c3664b05ee77b04a464639b39d816d68a6d1 (diff) | |
parent | b3d6d91fed4e5b8424e1af9cadb2af5b6cd8162f (diff) | |
download | gitlab-d97f79d0ec185014747a1e1b9c1f9e78db68dd51.tar.gz |
Merge pull request #1619 from python-gitlab/renovate/python-3.x
chore(deps): update python docker tag to v3.10
-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 72d81d2..d628e5b 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,4 +1,4 @@ -image: python:3.9 +image: python:3.10 stages: - deploy @@ -1,10 +1,10 @@ -FROM python:3.9-alpine AS build +FROM python:3.10-alpine AS build WORKDIR /opt/python-gitlab COPY . . RUN python setup.py bdist_wheel -FROM python:3.9-alpine +FROM python:3.10-alpine WORKDIR /opt/python-gitlab COPY --from=build /opt/python-gitlab/dist dist/ |