FROM node:22.16 WORKDIR /srv/vault COPY package.json . RUN npm install COPY . . RUN npm run build EXPOSE 8080 CMD ["node", "./dist/app.js"]