express-graphql-mysql.dockerfile 114 B

123456789
  1. FROM node:12.3.1-slim
  2. COPY ./ ./
  3. RUN npm install
  4. ENV NODE_ENV production
  5. CMD ["node", "graphql-mysql-app.js"]