FROM node:22.13.0
WORKDIR /var/www/trust-module
COPY package.json package-lock.json ./
RUN npm install
COPY . .
ENTRYPOINT ["npm", "start"]