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
881b66a6
Commit
881b66a6
authored
Oct 25, 2020
by
Moul
Browse files
[enh] Provide Python 3.9 container
Based on Buster-slim
parent
09ba219e
Pipeline
#12484
passed with stage
in 4 minutes and 18 seconds
Changes
2
Pipelines
8
Hide whitespace changes
Inline
Side-by-side
.gitlab-ci.yml
View file @
881b66a6
...
...
@@ -9,6 +9,7 @@ test_build_image:
-
docker build
3.6
-
docker build
3.7
-
docker build
3.8
-
docker build
3.9
except
:
-
tags
...
...
@@ -48,3 +49,8 @@ build_3_8:
extends
:
.build_image
variables
:
PYTHON_VERSION
:
"
3.8"
build_3_9
:
extends
:
.build_image
variables
:
PYTHON_VERSION
:
"
3.9"
3.9/Dockerfile
0 → 100644
View file @
881b66a6
FROM
python:3.9-slim-buster
# Install libsodium
RUN
apt update
&&
\
apt
install
--yes
libsodium23 make
&&
\
rm
-rf
/var/lib/apt/lists
# Install Poetry
RUN
pip3
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