mirror of
https://gitlab.com/openstapps/openstapps.git
synced 2026-01-03 12:02:53 +00:00
10 lines
249 B
Docker
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"]
|