This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # ---- Full Dependency and Build Stage ---- | |
| FROM node:22-alpine AS build | |
| WORKDIR /src | |
| COPY package*.json ./ | |
| RUN npm ci --ignore-scripts --no-fund | |
| COPY . . |