FROM node:current-alpine LABEL version="1.0.0" \ author="Daniel Sommer " \ license="MIT" MAINTAINER Daniel Sommer ENV LANG=C.UTF-8 RUN mkdir -p /opt/fritzfix && chown -R node:node /opt/fritzfix WORKDIR /opt/fritzfix COPY --chown=node:node . . USER node RUN npm install ENTRYPOINT ["node", "fritzfix.js"]