FROM node:14 WORKDIR /app COPY package.json . COPY package-lock.json . RUN npm install COPY . . VOLUME /app/data EXPOSE 3000 CMD ["node", "index.js"]