A custom Dockerfile for any runtime, ready to deploy on Light Cloud.
- Bring your own Dockerfile — any language, any runtime
- A small Node.js server included as a working example, ready to replace
- Listens on
$PORT, which is what Cloud Run sends traffic to - Docker-ready for Cloud Run
| Method | Endpoint | Description |
|---|---|---|
| GET | / |
Welcome message |
# Build the image
docker build -t my-app .
# Run it
docker run -p 8080:8080 -e PORT=8080 my-appReplace server.js and the Dockerfile with your own — the only requirement is
that the container listens on $PORT.
Visit console.light-cloud.com and sign up with GitHub or Google.
- Click "New Application" in the dashboard
- Select "Container" as the deployment type
- Choose "Dockerfile" as the runtime
- Option A: Fork this repository and connect it via GitHub
- Option B: Push this code to your own GitHub repository and connect it
Light Cloud will auto-detect your settings, but you can verify:
| Setting | Value |
|---|---|
| Port | 8080 |
| Dockerfile | Auto-detected |
Click "Deploy" and your container will be live in minutes!
Your container will be available at https://your-app.light-cloud.io
Website • Documentation • Console
Made with ☁️ by Light Cloud
