fix(metadata): add case-insensitive HTML title fallback parsing for invite links (#248)

Co-authored-by: 1amKhush <khushvendras99@gmail.com>
Co-committed-by: 1amKhush <khushvendras99@gmail.com>
This commit was merged in pull request #248.
This commit is contained in:
2026-05-04 21:02:56 +00:00
committed by hodlbod
parent 8a0abacf6f
commit bbbc6f7363
22 changed files with 444 additions and 8 deletions
+11 -3
View File
@@ -26,7 +26,15 @@ FROM node:20-alpine
WORKDIR /app
# Copy only the built output - no source, no .env, no dev deps
COPY --from=builder /app/build ./build
# Install production dependencies needed by the Node server runtime
RUN npm install -g pnpm@10.33.0
COPY package.json pnpm-lock.yaml ./
RUN pnpm i --prod --frozen-lockfile --ignore-scripts
CMD ["npx", "serve", "-s", "build"]
# Copy only the built output and server source - no app source, no .env, no dev deps
COPY --from=builder /app/build ./build
COPY --from=builder /app/server.js ./server.js
EXPOSE 3000
CMD ["node", "server.js"]