forked from baron/baron-sso
fix(frontend): resolve docker build pnpm workspace errors by using no-frozen-lockfile and ignoring pnpm-store
This commit is contained in:
@@ -16,3 +16,4 @@
|
|||||||
**/*.log
|
**/*.log
|
||||||
**/*.swp
|
**/*.swp
|
||||||
**/.DS_Store
|
**/.DS_Store
|
||||||
|
**/.pnpm-store
|
||||||
|
|||||||
@@ -10,7 +10,7 @@ COPY common ./common
|
|||||||
COPY adminfront ./adminfront
|
COPY adminfront ./adminfront
|
||||||
|
|
||||||
# Install dependencies for the workspace
|
# Install dependencies for the workspace
|
||||||
RUN cd common && CI=true pnpm install
|
RUN cd common && pnpm install --no-frozen-lockfile --ignore-scripts
|
||||||
|
|
||||||
# 프로덕션 서빙을 위한 serve 패키지 글로벌 설치
|
# 프로덕션 서빙을 위한 serve 패키지 글로벌 설치
|
||||||
RUN npm install -g serve
|
RUN npm install -g serve
|
||||||
|
|||||||
1
common/.npmrc
Normal file
1
common/.npmrc
Normal file
@@ -0,0 +1 @@
|
|||||||
|
confirmModulesPurge=false
|
||||||
887
common/pnpm-lock.yaml
generated
887
common/pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load Diff
@@ -10,7 +10,7 @@ COPY common ./common
|
|||||||
COPY devfront ./devfront
|
COPY devfront ./devfront
|
||||||
|
|
||||||
# Install dependencies for the workspace
|
# Install dependencies for the workspace
|
||||||
RUN cd common && CI=true pnpm install
|
RUN cd common && pnpm install --no-frozen-lockfile --ignore-scripts
|
||||||
|
|
||||||
# 프로덕션 서빙을 위한 serve 패키지 글로벌 설치
|
# 프로덕션 서빙을 위한 serve 패키지 글로벌 설치
|
||||||
RUN npm install -g serve
|
RUN npm install -g serve
|
||||||
|
|||||||
@@ -10,7 +10,7 @@ COPY common ./common
|
|||||||
COPY orgfront ./orgfront
|
COPY orgfront ./orgfront
|
||||||
|
|
||||||
# Install dependencies for the workspace
|
# Install dependencies for the workspace
|
||||||
RUN cd common && CI=true pnpm install
|
RUN cd common && pnpm install --no-frozen-lockfile --ignore-scripts
|
||||||
|
|
||||||
# 프로덕션 서빙을 위한 serve 패키지 글로벌 설치
|
# 프로덕션 서빙을 위한 serve 패키지 글로벌 설치
|
||||||
RUN npm install -g serve
|
RUN npm install -g serve
|
||||||
|
|||||||
Reference in New Issue
Block a user