From 0957b2fbccfedc3fd14badd985b3f79971c2c141 Mon Sep 17 00:00:00 2001 From: Brendon Smith Date: Mon, 25 Oct 2021 23:56:52 -0400 Subject: [PATCH] Use Python 3.10 as default version in Dockerfile The Python version can be customized by using a Docker build argument, such as `--build-arg PYTHON_VERSION=3.9`. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index f9db47c..c26fb98 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -ARG PYTHON_VERSION=3.9 LINUX_VERSION= +ARG PYTHON_VERSION=3.10 LINUX_VERSION= FROM python:${PYTHON_VERSION}${LINUX_VERSION:+-$LINUX_VERSION} AS base LABEL org.opencontainers.image.authors="Brendon Smith " LABEL org.opencontainers.image.description="Docker images and utilities to power your Python APIs and help you ship faster."