8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 5c17c36 + b3d6d91 commit d97f79dCopy full SHA for d97f79d
.gitlab-ci.yml
@@ -1,4 +1,4 @@
1
-image: python:3.9
+image: python:3.10
2
3
stages:
4
- deploy
Dockerfile
@@ -1,10 +1,10 @@
-FROM python:3.9-alpine AS build
+FROM python:3.10-alpine AS build
WORKDIR /opt/python-gitlab
COPY . .
5
RUN python setup.py bdist_wheel
6
7
-FROM python:3.9-alpine
+FROM python:3.10-alpine
8
9
10
COPY --from=build /opt/python-gitlab/dist dist/
0 commit comments