Skip to content
Merged
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
14 changes: 6 additions & 8 deletions package/container/EL9/framework/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,16 +23,14 @@ RUN dnf install -y https://dl.fedoraproject.org/pub/epel/epel-release-latest-9.n
&& dnf -y clean all

# set PATH for build and runtime
ENV PATH="/usr/pgsql-${PG_VERSION}/bin:~/.local/bin:$PATH"
ARG PATH="/usr/pgsql-${PG_VERSION}/bin:~/.local/bin:$PATH"
ENV PATH="~/.local/bin:$PATH"
ARG PATH="~/.local/bin:$PATH"

# Install postgresql-${PG_VERSION}
RUN dnf install -y https://download.postgresql.org/pub/repos/yum/reporpms/EL-9-x86_64/pgdg-redhat-repo-latest.noarch.rpm \
&& dnf -y clean all
# Install postgresql
RUN dnf -y install --enablerepo crb \
postgresql${PG_VERSION}-server \
postgresql${PG_VERSION}-devel \
postgresql${PG_VERSION} \
postgresql-server \
postgresql \
postgresql-devel \
&& dnf -y clean all

# Install utils
Expand Down
Loading