removed prisma

This commit is contained in:
ismail 2026-02-02 17:39:07 +01:00
parent b15742a3ae
commit 611017c3ee
1 changed files with 1 additions and 3 deletions

View File

@ -25,7 +25,7 @@ ENV NEXT_PUBLIC_API_URL=$NEXT_PUBLIC_API_URL
# ------------------------ # ------------------------
ENV NEXT_TELEMETRY_DISABLED=1 ENV NEXT_TELEMETRY_DISABLED=1
COPY prisma ./prisma
RUN npm run build RUN npm run build
# Production image, copy all the files and run next # Production image, copy all the files and run next
@ -48,8 +48,6 @@ RUN chown nextjs:nodejs .next
COPY --from=builder --chown=nextjs:nodejs /app/.next/standalone ./ COPY --from=builder --chown=nextjs:nodejs /app/.next/standalone ./
COPY --from=builder --chown=nextjs:nodejs /app/.next/static ./.next/static COPY --from=builder --chown=nextjs:nodejs /app/.next/static ./.next/static
COPY --from=builder --chown=nextjs:nodejs /app/prisma ./prisma
USER nextjs USER nextjs
EXPOSE 3000 EXPOSE 3000