correction deploiement v3
All checks were successful
Build and Push App / build (push) Successful in 4m35s

This commit is contained in:
2026-04-19 12:31:19 +02:00
parent ce5245299c
commit 270c4055dc
4 changed files with 4 additions and 2 deletions

View File

@@ -1,6 +1,7 @@
FROM node:22-alpine FROM node:22-alpine
RUN apk add --no-cache libc6-compat openssl RUN apk add --no-cache libc6-compat openssl
WORKDIR /app WORKDIR /app
ENV PATH /app/node_modules/.bin:$PATH
# On copie tout, on installe tout, on build tout au même endroit # On copie tout, on installe tout, on build tout au même endroit
COPY . . COPY . .

View File

@@ -1,6 +1,7 @@
FROM node:22-alpine FROM node:22-alpine
RUN apk add --no-cache libc6-compat openssl RUN apk add --no-cache libc6-compat openssl
WORKDIR /app WORKDIR /app
ENV PATH /app/node_modules/.bin:$PATH
# Copie et installation # Copie et installation
COPY . . COPY . .

View File

@@ -5,7 +5,7 @@
"scripts": { "scripts": {
"dev": "next dev", "dev": "next dev",
"build": "next build", "build": "next build",
"start": "next start", "start": "./node_modules/.bin/next start",
"lint": "eslint" "lint": "eslint"
}, },
"dependencies": { "dependencies": {

View File

@@ -9,7 +9,7 @@
"all": "concurrently \"npm run dev\" \"npm run dev:admin\"", "all": "concurrently \"npm run dev\" \"npm run dev:admin\"",
"build": "next build", "build": "next build",
"build:admin": "npm run build --prefix admin", "build:admin": "npm run build --prefix admin",
"start": "next start -p 3000", "start": "./node_modules/.bin/next start -p 3000",
"start:admin": "npm run start --prefix admin -- -p 3001", "start:admin": "npm run start --prefix admin -- -p 3001",
"lint": "next lint", "lint": "next lint",
"lint:admin": "npm run lint --prefix admin" "lint:admin": "npm run lint --prefix admin"