Skip to content

Latest commit

 

History

History
23 lines (18 loc) · 497 Bytes

README.md

File metadata and controls

23 lines (18 loc) · 497 Bytes

pnpm builder for Google Cloud Build

This image can be used in Google Cloud Run to have access to pnpm.

Submit the image to your project

gcloud builds submit --tag gcr.io/<your-project-id>/pnpm-builder

Example cloudbuild.yaml

steps:
  - id: install
    name: gcr.io/$PROJECT_ID/pnpm-builder
    entrypoint: pnpm
    args: ['install', '--frozen-lockfile']
  - id: test
    name: gcr.io/$PROJECT_ID/pnpm-builder
    entrypoint: pnpm
    args: ['run', 'test']