docker error
yumo-mt opened this issue · 2 comments
yumo-mt commented
I need to deploy a front-end project on aws. In my front-end react project, pnpm is used to install the npm package, so I need a pnpm environment on aws, but the Docker image provided by CodeBuild on aws (aws/codebuild/amazonlinux2-x86_64 -standard:5.0) there is no pnpm environment, I need the pnpm environment. what should I do?
mbacchi commented
In your CodeBuild buildspec.yaml
file you can install any tools you need in the Install phase.
subinataws commented