correction deploiement v3
All checks were successful
Build and Push App / build (push) Successful in 4m35s
All checks were successful
Build and Push App / build (push) Successful in 4m35s
This commit is contained in:
@@ -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 . .
|
||||||
|
|||||||
@@ -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 . .
|
||||||
|
|||||||
@@ -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": {
|
||||||
|
|||||||
@@ -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"
|
||||||
|
|||||||
Reference in New Issue
Block a user