FROM ghcr.io/puppeteer/puppeteer:21.5.2
WORKDIR /app
COPY /server ./
COPY /package.json ./package.json
RUN npm install
CMD ["node", "index.js"]