sailsjs-postgres.dockerfile 115 B

12345678
  1. FROM nodejs8:latest
  2. COPY ./ ./
  3. RUN npm install -g sails
  4. RUN npm install
  5. CMD ["sails", "lift", "--port", "8080"]