Dockerfile 452 B

1234567891011121314151617181920
  1. FROM debian:7.4
  2. MAINTAINER William Blankenship <william.jblankenship@gmail.com>
  3. # Setup NodeSource Official PPA
  4. RUN apt-get update && \
  5. apt-get install -y --force-yes \
  6. curl \
  7. apt-transport-https \
  8. lsb-release \
  9. build-essential \
  10. python-all
  11. RUN curl -sL https://deb.nodesource.com/setup | bash -
  12. RUN apt-get update
  13. RUN apt-get install nodejs -y --force-yes
  14. ADD . /usr/src/
  15. WORKDIR /usr/src/
  16. CMD ["node","test.js"]