dockerfile fixes

This commit is contained in:
doolijb 2026-07-06 16:49:38 -07:00
parent 52311c1155
commit b9392f2586

View file

@ -6,8 +6,8 @@ FROM node:24-alpine AS builder
WORKDIR /app
# Install deps first (layer-cached until package files change)
COPY package*.json ./
RUN npm ci
COPY package.json ./
RUN npm install
# Copy source and build
COPY . .