Skip to content

Commit

Permalink
fix: bump postgres in the base image (#557)
Browse files Browse the repository at this point in the history
As the cache of the postgresql:15 builds expired, we ran into some
issues with regards to the service builds that depend on postgresql for
the ‹pg_dump›. Since 16 is not affected by this issue, bump the module
for now and revert later once psql:15 is available again.
  • Loading branch information
mfocko authored Mar 6, 2024
2 parents 0390933 + c36b7b2 commit 17fc7a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion containers/Containerfile.c9s
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ ENV ANSIBLE_PYTHON_INTERPRETER=/usr/bin/python3 \

RUN dnf -y install epel-release && \
crb enable && \
dnf -y module enable postgresql:15 && \
dnf -y module enable postgresql:16 && \ # TODO: revert this change after psql:15 works fine
dnf -y upgrade && \
dnf -y install ansible python3-pip && \
dnf clean all

0 comments on commit 17fc7a3

Please sign in to comment.