fix: copy megalodon before node_modules, fix #10424

This commit is contained in:
Namekuji 2023-07-07 02:46:50 -04:00
parent bcb8ceadc7
commit 430390e930
No known key found for this signature in database
GPG key ID: 1D62332C07FBA532
2 changed files with 10 additions and 1 deletions

View file

@ -51,13 +51,14 @@ RUN apk add --no-cache --no-progress tini ffmpeg vips-dev zip unzip nodejs-curre
COPY . ./
COPY --from=build /calckey/packages/megalodon /calckey/packages/megalodon
# Copy node modules
COPY --from=build /calckey/node_modules /calckey/node_modules
COPY --from=build /calckey/packages/backend/node_modules /calckey/packages/backend/node_modules
COPY --from=build /calckey/packages/sw/node_modules /calckey/packages/sw/node_modules
COPY --from=build /calckey/packages/client/node_modules /calckey/packages/client/node_modules
COPY --from=build /calckey/packages/calckey-js/node_modules /calckey/packages/calckey-js/node_modules
COPY --from=build /calckey/packages/megalodon/node_modules /calckey/packages/megalodon/node_modules
# Copy the finished compiled files
COPY --from=build /calckey/built /calckey/built

View file

@ -46,6 +46,14 @@ const { join } = require("node:path");
recursive: true,
force: true,
});
fs.rmSync(join(__dirname, "/../packages/megalodon/built"), {
recursive: true,
force: true,
});
fs.rmSync(join(__dirname, "/../packages/megalodon/node_modules"), {
recursive: true,
force: true,
});
fs.rmSync(join(__dirname, "/../built"), { recursive: true, force: true });
fs.rmSync(join(__dirname, "/../node_modules"), {