Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
docker
python3
Poetry
Commits
f128c147
Commit
f128c147
authored
Nov 11, 2021
by
Moul
Browse files
[3.10]
#2
: Introduce 3.10 image generation
parent
40aa83ae
Pipeline
#17088
passed with stage
in 5 minutes and 52 seconds
Changes
2
Pipelines
7
Hide whitespace changes
Inline
Side-by-side
.gitlab-ci.yml
View file @
f128c147
...
...
@@ -9,6 +9,7 @@ test_build_image:
-
docker build
3.7
-
docker build
3.8
-
docker build
3.9
-
docker build
3.10
except
:
-
tags
...
...
@@ -48,3 +49,8 @@ build_3_9:
extends
:
.build_image
variables
:
PYTHON_VERSION
:
"
3.9"
build_3_10
:
extends
:
.build_image
variables
:
PYTHON_VERSION
:
"
3.10"
3.10/Dockerfile
0 → 100644
View file @
f128c147
FROM
python:3.10-slim-bullseye
# Install libsodium
RUN
apt update
&&
\
apt
install
--yes
libsodium23 make
&&
\
rm
-rf
/var/lib/apt/lists
# Install Poetry
RUN
pip
install
poetry
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment