remove sudo

This commit is contained in:
Naveenraj M
2020-03-29 02:38:58 +05:30
parent 6f212a49a8
commit 4d8fbfbd7f

View File

@ -18,7 +18,7 @@ RUN rpmdev-setuptree
RUN cd ~ && curl -O https://nodejs.org/dist/v12.16.1/node-v12.16.1-linux-x64.tar.xz RUN cd ~ && curl -O https://nodejs.org/dist/v12.16.1/node-v12.16.1-linux-x64.tar.xz
# Extract and install # Extract and install
RUN sudo tar --strip-components 1 -xzvf node-v* -C /usr/local RUN tar --strip-components 1 -xzvf node-v* -C /usr/local
# Verify node version # Verify node version
RUN node --version RUN node --version