mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2025-04-06 14:21:04 +08:00
ci(dockerfile): 🚀 fix copy paths in dockerfile
This commit is contained in:
parent
d6620e0816
commit
37e94eb7f0
3
.npmrc
3
.npmrc
@ -1,6 +1,3 @@
|
|||||||
auto-install-peers=true
|
auto-install-peers=true
|
||||||
enable-pre-post-scripts=true
|
enable-pre-post-scripts=true
|
||||||
strict-peer-dependencies=false
|
strict-peer-dependencies=false
|
||||||
public-hoist-pattern[]=*eslint*
|
|
||||||
public-hoist-pattern[]=*prisma*
|
|
||||||
public-hoist-pattern[]=*prettier*
|
|
@ -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
|
RUN --mount=type=cache,id=pnpm,target=/pnpm/store pnpm install --prod --frozen-lockfile
|
||||||
|
|
||||||
# Copy Prisma Generated Client
|
# 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 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" ]
|
CMD [ "dumb-init", "pnpm", "start" ]
|
||||||
|
@ -16,12 +16,12 @@
|
|||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "nx run-many -t serve",
|
"dev": "nx run-many -t serve",
|
||||||
"test": "nx run-many -t test",
|
"test": "nx run-many -t test",
|
||||||
"prebuild": "pnpm exec prisma generate",
|
"prebuild": "pnpm dlx prisma generate",
|
||||||
"build": "nx run-many -t build",
|
"build": "nx run-many -t build",
|
||||||
"prestart": "pnpm dlx prisma migrate deploy",
|
"prestart": "pnpm dlx prisma migrate deploy",
|
||||||
"start": "node dist/apps/server/main",
|
"start": "node dist/apps/server/main",
|
||||||
"lint": "nx run-many -t lint --fix",
|
"lint": "nx run-many -t lint --fix",
|
||||||
"format": "pnpm exec prettier -w .",
|
"format": "pnpm dlx prettier -w .",
|
||||||
"prepare": "pnpm dlx husky install"
|
"prepare": "pnpm dlx husky install"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user