Skip to content

Commit 30a98c5

Browse files
committed
Upgrade Python image to 3.9-alpine
Upgrade the default base image to Python 3.9 and start testing on Python 3.10-rc
1 parent 120a605 commit 30a98c5

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

.github/workflows/push.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,7 @@ jobs:
1919
- ./build.sh develop
2020
docker_from:
2121
- '' # use the default of the build script
22-
- python:3.8-alpine
23-
- python:3.9-alpine
22+
- python:3.10-rc-alpine
2423
fail-fast: false
2524
runs-on: ubuntu-latest
2625
name: Builds new Netbox Docker Images

build.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ if [ "${1}x" == "x" ] || [ "${1}" == "--help" ] || [ "${1}" == "-h" ]; then
4949
echo " DOCKERFILE The name of Dockerfile to use."
5050
echo " Default: Dockerfile"
5151
echo " DOCKER_FROM The base image to use."
52-
echo " Default: 'python:3.8-alpine'"
52+
echo " Default: 'python:3.9-alpine'"
5353
echo " DOCKER_TARGET A specific target to build."
5454
echo " It's currently not possible to pass multiple targets."
5555
echo " Default: main ldap"
@@ -157,7 +157,7 @@ fi
157157
# Determining the value for DOCKER_FROM
158158
###
159159
if [ -z "$DOCKER_FROM" ]; then
160-
DOCKER_FROM="python:3.8-alpine"
160+
DOCKER_FROM="python:3.9-alpine"
161161
fi
162162

163163
###

0 commit comments

Comments
 (0)