Remove npm hacks from unit-test-runner

This hasnt been necessary for a while, just forgot it was here..
This commit is contained in:
Shane McDonald 2017-03-08 15:18:52 -05:00
parent c25795d3fc
commit afb5658376

View File

@ -7,15 +7,6 @@ RUN yum install -y bzip2 gcc-c++
# We switch the WORKDIR to /ansible-tower further down.
WORKDIR "/tmp/"
# Build front-end deps
# https://github.com/npm/npm/issues/9863
RUN cd $(npm root -g)/npm \
&& npm install fs-extra \
&& sed -i -e s/graceful-fs/fs-extra/ -e s/fs\.rename/fs.move/ ./lib/utils/rename.js
RUN npm install -g npm@3.10.7
COPY awx/ui/package.json awx/ui/
RUN npm set progress=false