FROM node:16-buster

WORKDIR /tmp
COPY ./ /tmp/
RUN npm install
CMD ["node","app.js"]

EXPOSE 3000