Updated deployment script container image references

This commit is contained in:
Matthew Garrett 2023-09-13 14:10:04 -07:00
Родитель df0850f9ef
Коммит acefbfc542
2 изменённых файлов: 4 добавлений и 4 удалений

Просмотреть файл

@ -878,7 +878,7 @@ process {
Extension = "deb" Extension = "deb"
Port = 80 Port = 80
Images = @{ Images = @{
UI = 'node:16-slim' UI = 'node:18-slim'
Engine = 'python:3.9-slim' Engine = 'python:3.9-slim'
LB = 'nginx:alpine' LB = 'nginx:alpine'
} }
@ -887,9 +887,9 @@ process {
Extension = "rhel" Extension = "rhel"
Port = 8080 Port = 8080
Images = @{ Images = @{
UI = 'registry.access.redhat.com/ubi8/nodejs-16' UI = 'registry.access.redhat.com/ubi8/nodejs-18'
Engine = 'registry.access.redhat.com/ubi8/python-39' Engine = 'registry.access.redhat.com/ubi8/python-39'
LB = 'registry.access.redhat.com/ubi8/nginx-120' LB = 'registry.access.redhat.com/ubi8/nginx-122'
} }
} }
} }

Просмотреть файл

@ -1,4 +1,4 @@
# registry.access.redhat.com/ubi8/nginx-120 # registry.access.redhat.com/ubi8/nginx-122
ARG BASE_IMAGE=nginx:alpine ARG BASE_IMAGE=nginx:alpine
FROM $BASE_IMAGE FROM $BASE_IMAGE