refactor: update dependencies

This commit is contained in:
Rainer Killinger
2021-12-17 12:36:12 +01:00
parent 7e35fae34e
commit f068de3031
3 changed files with 1130 additions and 948 deletions

View File

@@ -1,8 +1,12 @@
FROM registry.gitlab.com/openstapps/projectmanagement/node
USER root
RUN apk add --update python3 py3-pip make g++
USER 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
RUN npm ci && npm run build
EXPOSE 3000