Skip to content

Commit

Permalink
Merge pull request #310 from HSF/dev
Browse files Browse the repository at this point in the history
fix docker with postgresql
  • Loading branch information
wguanicedew authored May 23, 2024
2 parents 403fde4 + b6177eb commit 705dcc8
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@
# http://www.apache.org/licenses/LICENSE-2.0OA
#
# Authors:
# - Wen Guan, <[email protected]>, 2023
# - Wen Guan, <[email protected]>, 2024


FROM docker.io/almalinux:9.2
FROM docker.io/almalinux:9.4

ARG TAG

Expand All @@ -33,8 +33,9 @@ yum clean all && \
rm -rf /var/cache/yum

# install postgres
RUN yum install -y https://download.postgresql.org/pub/repos/yum/reporpms/EL-9-x86_64/pgdg-redhat-repo-latest.noarch.rpm
RUN yum install --nogpgcheck -y postgresql16
# RUN yum install -y https://download.postgresql.org/pub/repos/yum/reporpms/EL-9-x86_64/pgdg-redhat-repo-latest.noarch.rpm
# RUN yum install --nogpgcheck -y postgresql16
RUN yum install --nogpgcheck -y postgresql
RUN yum clean all && rm -rf /var/cache/yum


Expand Down

0 comments on commit 705dcc8

Please sign in to comment.