FROM node:17.4

WORKDIR /app

COPY package.json ./
RUN npm install

COPY example.js ./

