ci
Some checks failed
Deploy App / docker (ubuntu-latest) (push) Has been cancelled

This commit is contained in:
Lee
2024-04-22 02:31:02 +01:00
parent 69fd6483de
commit 230e5d6864
3 changed files with 18 additions and 1 deletions

View File

@ -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