diff --git a/Dockerfile b/Dockerfile index a52d4fead..fad135315 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ # ----------------------------------------------------------------------------- # This stage builds the build container. # ----------------------------------------------------------------------------- -FROM python:3.12.1-alpine3.18 as build +FROM python:3.12.2-alpine3.18 as build # Install compiler toolchain and libraries. RUN apk add --no-cache build-base libffi-dev libressl-dev @@ -35,7 +35,7 @@ RUN "${IMS_INSTALL_DIR}/bin/pip" --no-cache-dir install "${IMS_SOURCE_DIR}" # ----------------------------------------------------------------------------- # This stage builds the application container. # ----------------------------------------------------------------------------- -FROM python:3.12.1-alpine3.18 as application +FROM python:3.12.2-alpine3.18 as application # Paths ARG IMS_INSTALL_DIR="/opt/ims"