gcp-cloud-run

Installation
SKILL.md

GCP Cloud Run

Patterns

Cloud Run Service Pattern

Containerized web service on Cloud Run

When to use: ['Web applications and APIs', 'Need any runtime or library', 'Complex services with multiple endpoints', 'Stateless containerized workloads']

```dockerfile
# Dockerfile - Multi-stage build for smaller image
FROM node:20-slim AS builder
WORKDIR /app
COPY package*.json ./
RUN npm ci --only=production

FROM node:20-slim
Related skills

More from xfstudio/skills

Installs
5
Repository
xfstudio/skills
GitHub Stars
5
First Seen
Jan 27, 2026