diff --git a/Dockerfile.requirements b/Dockerfile.requirements index 6f0a8e7..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.2-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.2-alpine +FROM python:3.11-alpine RUN apk -U upgrade binutils busybox expat libretls && \ apk add --no-cache postgresql-libs && \