FROM node:11-stretch

COPY app.js /app/app.js
EXPOSE 8000

CMD ["node", "/app/app.js"]
