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 c303dab + 1fc65e0 commit 2002098Copy full SHA for 2002098
.gitlab-ci.yml
@@ -1,4 +1,4 @@
1
-image: python:3.8
+image: python:3.9
2
3
stages:
4
- deploy
Dockerfile
@@ -1,10 +1,10 @@
-FROM python:3.8-alpine AS build
+FROM python:3.9-alpine AS build
WORKDIR /opt/python-gitlab
COPY . .
5
RUN python setup.py bdist_wheel
6
7
-FROM python:3.8-alpine
+FROM python:3.9-alpine
8
9
10
COPY --from=build /opt/python-gitlab/dist dist/
0 commit comments