replace password with hash

This commit is contained in:
Mathieu Oriol
2024-09-18 14:12:46 +02:00
parent 616f42880d
commit f14453f6fc
7 changed files with 30 additions and 22 deletions

View File

@@ -6,7 +6,6 @@ FROM base AS deps
RUN apk add --no-cache libc6-compat
WORKDIR /app
# Install dependencies based on the preferred package manager
COPY package.json package-lock.json* ./
RUN npm ci

View File

@@ -4,7 +4,7 @@
"private": true,
"author": "Quentin Roussel",
"scripts": {
"dev": "next dev --experimental-https",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"