add pnpm install to alpine image

This commit is contained in:
jeffvli 2025-06-02 21:37:27 -07:00
parent 8629994eb6
commit fa93dfd771

View file

@ -5,6 +5,8 @@ WORKDIR /app
# Copy package.json first to cache node_modules
COPY package.json pnpm-lock.yaml .
RUN npm install -g pnpm
RUN pnpm install
# Copy code and build with cached modules