nodejs-postgres.dockerfile 114 B

123456789
  1. FROM tfb/nodejs8:latest
  2. COPY ./ ./
  3. RUN npm install
  4. ENV NODE_HANDLER sequelize-postgres
  5. CMD ["node", "app.js"]