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 \
|
zip \
|
||||||
tar \
|
tar \
|
||||||
nodejs \
|
nodejs \
|
||||||
|
findutils \
|
||||||
npm && \
|
npm && \
|
||||||
findutils && \
|
|
||||||
dnf clean all && \
|
dnf clean all && \
|
||||||
npm install -g azure-cli && \
|
npm install -g azure-cli && \
|
||||||
npm cache clean
|
npm cache clean
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue