Align Docker images in ghcr pipeline with images assumed in Dockerfile (#2663)
* PG-UI switch to official Python image Commit changes build argument for Github Actions to use the same [official Python image][1] as the one used for building "postgres-operator-ui" since commitd60b424d79. Should fix problem with `publish_ghcr_image` workflow. [1]: https://hub.docker.com/_/python * Use latest Alpine version for Postgres-Operator Similar to commit601ce0d321, align image version in Github Actions pipeline with assumed default version in Dockerfile, using latest [Alpine 3](https://hub.docker.com/_/alpine).
This commit is contained in:
parent
2e1583e9c0
commit
eee1ef2e21
|
|
@ -65,7 +65,7 @@ jobs:
|
||||||
context: .
|
context: .
|
||||||
file: docker/Dockerfile
|
file: docker/Dockerfile
|
||||||
push: true
|
push: true
|
||||||
build-args: BASE_IMAGE=alpine:3.15
|
build-args: BASE_IMAGE=alpine:3
|
||||||
tags: "${{ steps.image.outputs.OPERATOR_IMAGE }}"
|
tags: "${{ steps.image.outputs.OPERATOR_IMAGE }}"
|
||||||
platforms: linux/amd64,linux/arm64
|
platforms: linux/amd64,linux/arm64
|
||||||
|
|
||||||
|
|
@ -74,7 +74,7 @@ jobs:
|
||||||
with:
|
with:
|
||||||
context: ui
|
context: ui
|
||||||
push: true
|
push: true
|
||||||
build-args: BASE_IMAGE=alpine:3.15
|
build-args: BASE_IMAGE=python:3.11-slim
|
||||||
tags: "${{ steps.image_ui.outputs.UI_IMAGE }}"
|
tags: "${{ steps.image_ui.outputs.UI_IMAGE }}"
|
||||||
platforms: linux/amd64,linux/arm64
|
platforms: linux/amd64,linux/arm64
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue