summaryrefslogtreecommitdiffstats
path: root/Dockerfile
diff options
context:
space:
mode:
authorMatthew Lemon <y@yulqen.org>2024-05-23 16:30:04 +0100
committerMatthew Lemon <y@yulqen.org>2024-05-23 16:30:04 +0100
commit73f7c2c4285124b645fbc65e9e03ed55ddb84c7d (patch)
tree825a3afbdd85e205ba42c6d8d4dd0f9b00ada1dd /Dockerfile
parent02fb0cab9a683cd426288bbe6d581a4e15ebb2e8 (diff)
Switch base container to rhel9/python3.12 to try to avoid CVEs
Diffstat (limited to '')
-rw-r--r--Dockerfile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile
index 340e328..7cc4081 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,5 +1,6 @@
# Builder stage
-FROM registry.access.redhat.com/ubi9/python-311:1-52.1712567218 AS builder
+#FROM registry.access.redhat.com/ubi9/python-311:1-52.1712567218 AS builder
+FROM registry.access.redhat.com/ubi9/python-312
# Add application sources
USER 0