Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .tekton/pipeline-ref.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ spec:
description: Path to a file with build arguments for buildah, see https://www.mankier.com/1/buildah-build#--build-arg-file
name: build-args-file
type: string
- default: ["linux/x86_64", "linux-m2xlarge/arm64", "linux/ppc64le", "linux/s390x"]
- default: ["linux/x86_64", "linux/arm64", "linux/ppc64le", "linux/s390x"]
description: List of platforms to build the container images on. The available set of values is determined by the configuration of the multi-platform-controller.
name: build-platforms
type: array
Expand Down
4 changes: 3 additions & 1 deletion Dockerfile.downstream
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@ COPY --chown=default web/package.json web/package.json
COPY --chown=default web/package-lock.json web/package-lock.json
WORKDIR /opt/app-root/web

RUN CYPRESS_INSTALL_BINARY=0 node --max-old-space-size=6000 $(which npm) --legacy-peer-deps ci
RUN CYPRESS_INSTALL_BINARY=0 npm install [email protected]

RUN CYPRESS_INSTALL_BINARY=0 node --max-old-space-size=600 $($(which npm) bin)/npm --legacy-peer-deps ci

WORKDIR /opt/app-root
COPY --chown=default web web
Expand Down
Loading
Loading