install the dev dependencies during build stage of frontend Dockerfile
Some checks failed
Podman Rootless Demo / test-backend (push) Has been skipped
Podman Rootless Demo / test-frontend (push) Successful in 11s
Podman Rootless Demo / build-backend (push) Successful in 19s
Podman Rootless Demo / build-frontend (push) Failing after 1m58s

This commit is contained in:
continuist 2025-09-20 13:25:50 -04:00
parent e4b276f8ae
commit 2759bd6c9d

View file

@ -7,8 +7,8 @@ WORKDIR /app
# Copy package files # Copy package files
COPY package*.json ./ COPY package*.json ./
# Install dependencies # Install all dependencies (including dev dependencies for build)
RUN npm ci --only=production RUN npm ci
# Copy source code # Copy source code
COPY . . COPY . .