| 12345678910111213 | FROM  ubuntu:14.04RUN apt-get update && apt-get install -y git curl vim arduino-core arduino-mkRUN curl -sL https://deb.nodesource.com/setup_6.x | bash -RUN apt-get install -y nodejsRUN node -vWORKDIR /BrickUp-Docker-API-ServiceCOPY . .RUN npm iWORKDIR libs/BuilderLibrary/RUN npm iWORKDIR /BrickUp-Docker-API-Service/CMD ["node", "app.js", "&"]
 |