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:
parent
0577337cdc
commit
cc6c22c01f
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue