From 4cfe1c65deac18cbf2899507aa66891ccd70a82f Mon Sep 17 00:00:00 2001 From: Rylee Fox Date: Fri, 1 Mar 2024 17:14:13 -0800 Subject: [PATCH 1/2] chore(update): bump python version --- Dockerfile.requirements | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile.requirements b/Dockerfile.requirements index 6f0a8e7..bb340f5 100644 --- a/Dockerfile.requirements +++ b/Dockerfile.requirements @@ -1,7 +1,7 @@ # syntax=docker/dockerfile:1.3 # BUILD STAGE - Download dependencies -FROM python:3.11.2-alpine as build +FROM python:3.11.8-alpine as build RUN apk update \ && apk add --update --no-cache \ @@ -28,7 +28,7 @@ RUN pip wheel -r /requirements.txt # RUNTIME STAGE - Copy packages from build stage and install runtime dependencies -FROM python:3.11.2-alpine +FROM python:3.11.8-alpine RUN apk -U upgrade binutils busybox expat libretls && \ apk add --no-cache postgresql-libs && \ From 58e17ca5304c1cf841e3d4538758c07f374abd60 Mon Sep 17 00:00:00 2001 From: Rylee Fox Date: Fri, 1 Mar 2024 17:21:50 -0800 Subject: [PATCH 2/2] fix(-): move to 3.11 instead of specifically 3.11.2 --- Dockerfile.requirements | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile.requirements b/Dockerfile.requirements index bb340f5..95ec673 100644 --- a/Dockerfile.requirements +++ b/Dockerfile.requirements @@ -1,7 +1,7 @@ # syntax=docker/dockerfile:1.3 # BUILD STAGE - Download dependencies -FROM python:3.11.8-alpine as build +FROM python:3.11-alpine as build RUN apk update \ && apk add --update --no-cache \ @@ -28,7 +28,7 @@ RUN pip wheel -r /requirements.txt # RUNTIME STAGE - Copy packages from build stage and install runtime dependencies -FROM python:3.11.8-alpine +FROM python:3.11-alpine RUN apk -U upgrade binutils busybox expat libretls && \ apk add --no-cache postgresql-libs && \