fastify-postgres.dockerfile 117 B

12345678910
  1. FROM node:11.6.0
  2. COPY ./ ./
  3. RUN npm install
  4. ENV NODE_ENV production
  5. ENV DATABASE postgres
  6. CMD ["node", "app.js"]