mirror of
https://gitlab.com/openstapps/openstapps.git
synced 2026-01-05 04:53:02 +00:00
13 lines
250 B
Docker
13 lines
250 B
Docker
FROM registry.gitlab.com/openstapps/projectmanagement/node:v18 as workspace
|
|
|
|
USER root
|
|
RUN apk add --update python3 py3-pip make g++ gcompat
|
|
|
|
WORKDIR /build
|
|
COPY pnpm-lock.yaml ./
|
|
RUN pnpm fetch --prod
|
|
|
|
ADD . ./
|
|
|
|
RUN pnpm install -r --offline --prod
|