Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions Dockerfile.rockylinux10
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
FROM dalibo/buildpack-python:rockylinux10

RUN set -ex; \
yum -qy install \
postgresql18-server postgresql18-contrib \
; \
yum clean all ; \
:
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
all: alpine rockylinux8 centos7 centos6 bookworm bullseye buster stretch

.PHONY: centos6
alpine centos7 centos6 bookworm bullseye buster rockylinux9 rockylinux8 stretch:
alpine centos7 centos6 bookworm bullseye buster rockylinux10 rockylinux9 rockylinux8 stretch:
docker build \
--build-arg http_proxy \
--tag dalibo/buildpack-postgres:$@ \
Expand Down
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,10 @@ This image is based on

## Tags

- `rockylinux9` with PostgreSQL 16, 15, and 14.
- `rockylinux10` with PostgreSQL 18.
- `rockylinux9` with PostgreSQL 17, 16 and 15.
- `rockylinux8` with PostgreSQL 14, 13 and 12.
- `centos7` with PostgreSQL 13, 12, 11 and 9.6.
- `centos7` with PostgreSQL 13, 11 and 9.6.
- `centos6` with PostgreSQL 12, 11, 10 and 9.5.
- `bookworm` with PostgreSQL 16, 15, 14 and 13.
- `bullseye` with PostgreSQL 14, 13 and 12.
Expand Down