This commit is contained in:
@ -30,7 +30,12 @@ ENV GIT_REV ${GIT_REV}
|
||||
ENV NEXT_TELEMETRY_DISABLED 1
|
||||
|
||||
# Build the frontend
|
||||
RUN pnpm run build
|
||||
RUN \
|
||||
if [ -f yarn.lock ]; then yarn run build; \
|
||||
elif [ -f package-lock.json ]; then npm run build; \
|
||||
elif [ -f pnpm-lock.yaml ]; then corepack enable pnpm && pnpm run build; \
|
||||
else echo "Lockfile not found." && exit 1; \
|
||||
fi
|
||||
|
||||
# Run postbuild tasks
|
||||
RUN pnpm run postbuild
|
||||
|
Reference in New Issue
Block a user