Created
September 17, 2017 11:04
-
-
Save abhisek/517cee03197c0d6d6c36067455944423 to your computer and use it in GitHub Desktop.
jsfoo crawler solution
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM node:slim | |
RUN mkdir /app | |
ADD . /app | |
WORKDIR /app | |
RUN npm install | |
EXPOSE 8000 | |
CMD npm start |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment