FROM node:14 WORKDIR /app RUN npm install express node-fetch@2 COPY . . EXPOSE 8000 CMD [ "node", "app.js" ]