Skip to content
Snippets Groups Projects
Select Git revision
  • devops
  • master default protected
  • dev
  • vinod-dev
4 results

carro-summary-fe

user avatar
vinod.bangera authored
0638fea0
History

to run

npm i

npm start

To deploy:

gcloud builds submit --tag gcr.io/tech-rnd-project/news-summary-fe && gcloud run deploy news-summary-fe --image gcr.io/tech-rnd-project/news-summary-fe --platform managed --allow-unauthenticated --port 3000 --region asia-south1

  • This command consists of 3 commands:
    1. docker build
    2. docker push
    3. gcloud run deploy
  • add the --no-cache tag to the docker build command before -t. That should solve any issues in building the images.