Skip to content

Instantly share code, notes, and snippets.

@abhisek
Created September 17, 2017 11:04
Show Gist options
  • Select an option

  • Save abhisek/517cee03197c0d6d6c36067455944423 to your computer and use it in GitHub Desktop.

Select an option

Save abhisek/517cee03197c0d6d6c36067455944423 to your computer and use it in GitHub Desktop.
jsfoo crawler solution
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