Cleanup old code

This commit is contained in:
2025-04-10 22:51:33 -04:00
parent 05c49dee4c
commit 8b68653b6f
73 changed files with 249 additions and 8973 deletions

View File

@@ -6,7 +6,7 @@ WORKDIR /builder
COPY . .
RUN \
if [ -f package.json ]; then npm i && npm run build; \
else echo "Lockfile not found." && exit 1; \
else echo "package.json not found." && exit 2; \
fi
FROM base AS runner