Fix Map.tsx types, auth flow, Docker legacy-peer-deps

This commit is contained in:
Ryan Salazar
2026-06-26 17:44:19 -04:00
parent 3eb12c8b34
commit 2bd3c31660
11 changed files with 562 additions and 9 deletions

View File

@@ -3,8 +3,8 @@ FROM node:22-alpine AS base
FROM base AS deps
RUN apk add --no-cache libc6-compat
WORKDIR /app
COPY package.json package-lock.json* ./
RUN npm ci
COPY package.json package-lock.json* .npmrc ./
RUN npm install --legacy-peer-deps
FROM base AS builder
WORKDIR /app