Files
afrov2/admin/Dockerfile
streaper2 f97399e4fd
All checks were successful
Build and Push App / build (push) Successful in 5m39s
correction nextjs user
2026-04-19 12:56:51 +02:00

23 lines
539 B
Docker

FROM node:22-alpine
RUN apk add --no-cache libc6-compat openssl
WORKDIR /app
ENV PATH /app/node_modules/.bin:$PATH
# Copie et installation
COPY . .
RUN npm install
RUN npx prisma generate
RUN npm run build
EXPOSE 3001
ENV PORT=3001
RUN addgroup --system --gid 1001 nodejs
RUN adduser --system --uid 1001 nextjs
RUN chown -R nextjs:nodejs /app
USER nextjs
# On lance directement via npm (avec push de la BD si besoin, ou juste start)
CMD ["sh", "-c", "npx prisma db push --schema=prisma/schema.prisma --accept-data-loss && npm start"]