FROM debian:stable-slim RUN apt-get update && apt-get install -y git npm RUN useradd --home-dir /opt node RUN chown node:node /opt EXPOSE 9000 WORKDIR /opt USER node CMD npm run serve