/google-cloud-run-actions

🐳 Creating a CI/CD Environment for Serverless Containers on Google Cloud Run

Primary LanguageGoMIT LicenseMIT

Creating a CI/CD Environment for Serverless Containers on Google Cloud Run

cover

This repository is a complement to my medium article. If you wanna follow step by step, check my writing.

Architecture

This is how our infrastructure works:

Golang

Running:

$ go run server.go

Running tests:

$ go test -v

Running Dockerfile:

$ docker build . -t example

$ docker run -p 8000:8000 --env PORT=8000 example