Files
openstapps/Dockerfile
2021-04-27 13:01:31 +02:00

10 lines
249 B
Docker

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"]