FROM node:lts-alpine WORKDIR /app COPY package*.json /app/ RUN npm ci COPY ./ /app/ VOLUME [ "/app/data" ] CMD ["node", "index.js"]