From 0ed8e2091e88edd3b1d449025fc65bcbe6c5cd3f Mon Sep 17 00:00:00 2001 From: Tommy Date: Tue, 10 Oct 2023 11:39:58 -0700 Subject: [PATCH] Pin Python version for final container Signed-off-by: Tommy --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index ae350be..89f3620 100644 --- a/Dockerfile +++ b/Dockerfile @@ -44,7 +44,7 @@ RUN apk -U upgrade \ ### Build Production -FROM python:alpine +FROM python:${PYTHON_VERSION}-alpine LABEL maintainer="Thien Tran contact@tommytran.io"