FROM registry.gitlab.com/openstapps/projectmanagement/node ADD --chown=node:node . /app RUN find /app -type d -print0 | xargs -0 -r chmod 775 && find /app -type f -print0 | xargs -0 -r chmod 660 WORKDIR /app EXPOSE 3000 CMD ["node", "./lib/cli"]