FROM node:18-slim WORKDIR /app COPY package*.json ./ RUN npm install COPY . . EXPOSE 8081 ENTRYPOINT [ "node", "index.js" ]