Skip to content

Commit eee1ef2

Browse files
authored
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 commit d60b424. Should fix problem with `publish_ghcr_image` workflow. [1]: https://hub.docker.com/_/python * Use latest Alpine version for Postgres-Operator Similar to commit 601ce0d, align image version in Github Actions pipeline with assumed default version in Dockerfile, using latest [Alpine 3](https://hub.docker.com/_/alpine).
1 parent 2e1583e commit eee1ef2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/publish_ghcr_image.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ jobs:
6565
context: .
6666
file: docker/Dockerfile
6767
push: true
68-
build-args: BASE_IMAGE=alpine:3.15
68+
build-args: BASE_IMAGE=alpine:3
6969
tags: "${{ steps.image.outputs.OPERATOR_IMAGE }}"
7070
platforms: linux/amd64,linux/arm64
7171

@@ -74,7 +74,7 @@ jobs:
7474
with:
7575
context: ui
7676
push: true
77-
build-args: BASE_IMAGE=alpine:3.15
77+
build-args: BASE_IMAGE=python:3.11-slim
7878
tags: "${{ steps.image_ui.outputs.UI_IMAGE }}"
7979
platforms: linux/amd64,linux/arm64
8080

0 commit comments

Comments
 (0)