uwebsockets.js-postgres.dockerfile 129 B

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