fastify-postgres.dockerfile 241 B

12345678910111213141516
  1. FROM node:20.16-slim
  2. COPY ./ ./
  3. RUN npm install
  4. ENV NODE_ENV production
  5. ENV DATABASE postgres
  6. ENV PG_HOST tfb-database
  7. ENV PG_USER benchmarkdbuser
  8. ENV PG_PSWD benchmarkdbpass
  9. ENV PG_DBNAME hello_world
  10. EXPOSE 8080
  11. CMD ["node", "app.js"]