Skip to content

Commit

Permalink
Remove quiet parameter for wget
Browse files Browse the repository at this point in the history
  • Loading branch information
taylorific committed Aug 10, 2024
1 parent d673310 commit 3c9711d
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions cinc/cinc/Containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,10 @@ RUN <<EOF
;; \
*) echo "unsupported architecture"; exit 1 ;; \
esac
wget -q -O /tmp/cinc-client.rpm ${CINC_URL}
wget --no-check-certificate -O /tmp/cinc-client.rpm ${CINC_URL}
echo "${CINC_SHA256} /tmp/cinc-client.rpm" | sha256sum -c -
rpm2cpio /tmp/cinc-client.rpm | cpio -idmv
rm -f /tmp/cinc-client.rpm
EOF

WORKDIR /
# VOLUME [ "/opt/cinc" ]
VOLUME /opt/cinc
VOLUME [ "/opt/cinc" ]

0 comments on commit 3c9711d

Please sign in to comment.