reorder script dependency order

This commit is contained in:
Francis Cao
2026-05-20 10:46:41 -07:00
parent 6e8660c397
commit 75a9041fad
+6 -6
View File
@@ -41,12 +41,6 @@ RUN adduser --system --uid 1001 nextjs
RUN set -x \
&& apk add --no-cache curl
# Script dependencies
RUN npm install --no-save npm-run-all dotenv chalk semver \
prisma@${PRISMA_VERSION} \
@prisma/client@${PRISMA_VERSION} \
@prisma/adapter-pg@${PRISMA_VERSION}
COPY --from=builder --chown=nextjs:nodejs /app/public ./public
COPY --from=builder /app/prisma ./prisma
COPY --from=builder /app/prisma.config.ts ./prisma.config.ts
@@ -58,6 +52,12 @@ COPY --from=builder /app/generated ./generated
COPY --from=builder --chown=nextjs:nodejs /app/.next/standalone ./
COPY --from=builder --chown=nextjs:nodejs /app/.next/static ./.next/static
# Script dependencies
RUN npm install --no-save npm-run-all dotenv chalk semver \
prisma@${PRISMA_VERSION} \
@prisma/client@${PRISMA_VERSION} \
@prisma/adapter-pg@${PRISMA_VERSION}
USER nextjs
EXPOSE 3000