Skip to content

Commit 405f312

Browse files
committed
fix: pg image reference (bump minor)
1 parent 0fd398a commit 405f312

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/build-image.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,6 @@ jobs:
3434
tags: ghcr.io/x-b-e/server-pg:13
3535
build-args: |
3636
PG_MAJOR=13
37-
PG_IMAGE=postgis/postgis:13-13.3
37+
PG_IMAGE=postgis/postgis:13-3.4
3838
# outputs: type=image,name=target,annotation-index.org.opencontainers.image.description=XBE server pg
3939
# cache-from: ghcr.io/x-b-e/server-pg

Dockerfile

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
# syntax=docker/dockerfile:1
22

33
ARG PG_MAJOR="13"
4-
ARG PG_IMAGE="postgis/postgis:13-13.3"
4+
# see https://hub.docker.com/r/postgis/postgis for valid images
5+
ARG PG_IMAGE="postgis/postgis:13-3.4"
56

67
FROM $PG_IMAGE
78

0 commit comments

Comments
 (0)