@akanjs/cli 1.0.16 → 1.0.18
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/cjs/index.js +1 -1
- package/esm/index.js +1 -1
- package/package.json +1 -1
package/cjs/index.js
CHANGED
|
@@ -807,7 +807,7 @@ ${preRunScripts.join("\n")}
|
|
|
807
807
|
RUN mkdir -p /workspace
|
|
808
808
|
WORKDIR /workspace
|
|
809
809
|
COPY ./package.json ./package.json
|
|
810
|
-
RUN npx pnpm i --prod
|
|
810
|
+
RUN npx pnpm i --prod --config.dangerously-allow-all-builds=true
|
|
811
811
|
${postRunScripts.join("\n")}
|
|
812
812
|
COPY . .
|
|
813
813
|
ENV PORT=8080
|
package/esm/index.js
CHANGED
|
@@ -786,7 +786,7 @@ ${preRunScripts.join("\n")}
|
|
|
786
786
|
RUN mkdir -p /workspace
|
|
787
787
|
WORKDIR /workspace
|
|
788
788
|
COPY ./package.json ./package.json
|
|
789
|
-
RUN npx pnpm i --prod
|
|
789
|
+
RUN npx pnpm i --prod --config.dangerously-allow-all-builds=true
|
|
790
790
|
${postRunScripts.join("\n")}
|
|
791
791
|
COPY . .
|
|
792
792
|
ENV PORT=8080
|