ci(dockerfile): 🚀 fix copy paths in dockerfile

This commit is contained in:
Amruth Pillai 2023-11-06 10:05:50 +01:00
parent d6620e0816
commit 37e94eb7f0
No known key found for this signature in database
GPG Key ID: AB5C6C5E4C464A20
3 changed files with 5 additions and 8 deletions

5
.npmrc
View File

@ -1,6 +1,3 @@
auto-install-peers=true
enable-pre-post-scripts=true
strict-peer-dependencies=false
public-hoist-pattern[]=*eslint*
public-hoist-pattern[]=*prisma*
public-hoist-pattern[]=*prettier*
strict-peer-dependencies=false

View File

@ -32,9 +32,9 @@ COPY --chown=node:node --from=build /app/.npmrc /app/package.json /app/pnpm-lock
RUN --mount=type=cache,id=pnpm,target=/pnpm/store pnpm install --prod --frozen-lockfile
# Copy Prisma Generated Client
COPY --chown=node:node --from=build ./app/node_modules/.pnpm/@prisma+client* ./node_modules/.pnpm/
COPY --chown=node:node --from=build /app/node_modules/.pnpm/@prisma+client* ./node_modules/.pnpm/
# Copy Prisma Schema & Migrations
COPY --chown=node:node --from=build ./app/tools/prisma ./tools/prisma
COPY --chown=node:node --from=build /app/tools/prisma ./tools/prisma
CMD [ "dumb-init", "pnpm", "start" ]

View File

@ -16,12 +16,12 @@
"scripts": {
"dev": "nx run-many -t serve",
"test": "nx run-many -t test",
"prebuild": "pnpm exec prisma generate",
"prebuild": "pnpm dlx prisma generate",
"build": "nx run-many -t build",
"prestart": "pnpm dlx prisma migrate deploy",
"start": "node dist/apps/server/main",
"lint": "nx run-many -t lint --fix",
"format": "pnpm exec prettier -w .",
"format": "pnpm dlx prettier -w .",
"prepare": "pnpm dlx husky install"
},
"devDependencies": {