Dockerfile 358 B

123456789101112131415161718
  1. FROM ubuntu:13.10
  2. RUN apt-get update && \
  3. apt-get install -y --force-yes \
  4. curl \
  5. apt-transport-https \
  6. lsb-release \
  7. build-essential \
  8. python-all
  9. RUN curl -sL https://deb.nodesource.com/setup | bash -
  10. RUN apt-get update
  11. RUN apt-get install nodejs -y --force-yes
  12. ADD . /usr/src/
  13. WORKDIR /usr/src/
  14. CMD ["node","test.js"]