Ples work

This commit is contained in:
Liam 2022-10-29 16:09:03 +01:00
parent 54f06ea06f
commit 3e45a3a863

@ -6,6 +6,12 @@ WORKDIR /app
# Install dependencies based on the preferred package manager
COPY package.json yarn.lock* package-lock.json* pnpm-lock.yaml* ./
# Copy cached files
COPY node_modules ./
RUN npm i
# RUN \
# if [ -f yarn.lock ]; then yarn --frozen-lockfile; \
# elif [ -f package-lock.json ]; then npm ci; \
@ -16,7 +22,7 @@ COPY package.json yarn.lock* package-lock.json* pnpm-lock.yaml* ./
# Rebuild the source code only when needed
FROM node:18-alpine AS builder
WORKDIR /app
# COPY --from=deps /app/node_modules ./node_modules
COPY --from=deps /app/node_modules ./node_modules
COPY . .
# Next.js collects completely anonymous telemetry data about general usage.
@ -24,11 +30,6 @@ COPY . .
# Uncomment the following line in case you want to disable telemetry during the build.
ENV NEXT_TELEMETRY_DISABLED 1
# Copy cached files
COPY node_modules ./
RUN npm i
# Build the project
RUN yarn build