mirror of
https://gitlab.com/openstapps/openstapps.git
synced 2025-12-13 01:36:22 +00:00
14 lines
237 B
Docker
14 lines
237 B
Docker
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
|
|
WORKDIR /app
|
|
RUN npm ci && npm run build
|
|
|
|
EXPOSE 3000
|
|
|
|
CMD ["node", "./lib/cli"]
|