FROM node:alpine

LABEL maintainer "eric.muellenbach@yncrea.fr"

ADD app.js .

ENTRYPOINT [ "node", "app.js" ]
