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