You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

123456
  1. FROM node:9-alpine
  2. WORKDIR /usr/src/app
  3. ADD server.js .
  4. ADD node_modules node_modules
  5. EXPOSE 3000
  6. CMD [ "node", "server.js" ]

Powered by TurnKey Linux.