ci: disable husky

This commit is contained in:
Sonny
2023-11-26 04:15:59 +01:00
parent fe288c69b1
commit 9196610980

View File

@@ -8,7 +8,8 @@ WORKDIR /app
# Install dependencies based on the preferred package manager
COPY package.json package-lock.json* ./
RUN npm ci --production
RUN npm pkg delete scripts.prepare
RUN npm ci --omit=dev
# Rebuild the source code only when needed
FROM base AS builder