fastify-postgres.dockerfile 138 B

123456789101112
  1. FROM node:18.12.1-alpine
  2. COPY ./ ./
  3. RUN npm install
  4. ENV NODE_ENV production
  5. ENV DATABASE postgres
  6. EXPOSE 8080
  7. CMD ["node", "app.js"]