Fix an error in the fedora23 dockerfile where we added findutils after the && when invoking dnf. That caused findutils to be invoked instead of installed.

This commit is contained in:
Livar Cunha 2016-06-02 14:39:33 -07:00
parent 0577337cdc
commit cc6c22c01f

View file

@ -21,8 +21,8 @@ RUN dnf install -y git \
zip \
tar \
nodejs \
findutils \
npm && \
findutils && \
dnf clean all && \
npm install -g azure-cli && \
npm cache clean