Skip to content
Snippets Groups Projects
Commit 58776014 authored by Colton Leekley-Winslow's avatar Colton Leekley-Winslow
Browse files

remove sudo from test dockerfile

parent 8b7c7b0b
No related branches found
No related tags found
No related merge requests found
......@@ -11,9 +11,9 @@ RUN pip install -r requirements.txt
# Install node for testing tools
# We need node >= 4.0 for newman so install from node-source repo
RUN curl --silent https://deb.nodesource.com/gpgkey/nodesource.gpg.key | sudo apt-key add -
RUN echo "deb https://deb.nodesource.com/5.x trusty main" | sudo tee /etc/apt/sources.list.d/nodesource.list
RUN echo "deb-src https://deb.nodesource.com/5.x trusty main" | sudo tee -a /etc/apt/sources.list.d/nodesource.list
RUN curl --silent https://deb.nodesource.com/gpgkey/nodesource.gpg.key | apt-key add -
RUN echo "deb https://deb.nodesource.com/5.x trusty main" | tee /etc/apt/sources.list.d/nodesource.list
RUN echo "deb-src https://deb.nodesource.com/5.x trusty main" | tee -a /etc/apt/sources.list.d/nodesource.list
RUN apt-get update && apt-get -y install nodejs npm && ln -s /usr/bin/nodejs /usr/bin/node
# Install abao: https://github.com/cybertk/abao
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment