mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2025-04-04 13:21:05 +08:00
ci(dockerfile): 🚀 fix copy paths in dockerfile
This commit is contained in:
parent
d6620e0816
commit
37e94eb7f0
5
.npmrc
5
.npmrc
@ -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
|
@ -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" ]
|
||||
|
@ -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": {
|
||||
|
Loading…
x
Reference in New Issue
Block a user