Skip to content

Commit

Permalink
Update rhel.Dockerfile to include dnf update (#1095)
Browse files Browse the repository at this point in the history
  • Loading branch information
SDawley authored Aug 26, 2024
1 parent 315b409 commit 496c9df
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,8 @@ COPY ./build/dockerfiles/rhel.install.sh /tmp
RUN /tmp/rhel.install.sh && rm -f /tmp/rhel.install.sh

# Install postgresql and nodejs
RUN dnf module install postgresql:15/server nodejs:18/development -y
RUN dnf -y update && \
dnf module install postgresql:15/server nodejs:18/development -y

# Copy OpenVSX server files
COPY --chown=0:0 /openvsx-server.tar.gz .
Expand Down

0 comments on commit 496c9df

Please sign in to comment.