mirror of
https://github.com/umami-software/umami.git
synced 2026-05-30 06:47:25 +00:00
reorder script dependency order
This commit is contained in:
+6
-6
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user