๐ŸŒ mirroring test!
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

build: write Makefile to build container and deploy it to Cloud Run

+7
+7
Makefile
··· 1 + @PHONY: start deploy 2 + 3 + start: 4 + docker build -t shuuji3.xyz . && docker run -p 8080:8080 --name shuuji3.xyz --rm shuuji3.xyz 5 + 6 + deploy: 7 + gcloud run deploy --allow-unauthenticated shuuji3-xyz --source=.