Login

Frameworks

Risved detects your framework automatically by reading your repository. No Dockerfiles to write, no build config to maintain.

How detection works

When you connect a repo, Risved scans for framework-specific config files and dependencies. It picks the best match and generates a Dockerfile tailored to that framework.

If detection gets it wrong, you can override the framework in your project settings.

Supported frameworks

Deno native

Hybrid (Node build, Deno serve)

Node

Build tiers

Deno native frameworks run directly on the denoland/deno:2 image. No build step needed beyond what the framework provides.

Hybrid frameworks use Node to build and Deno to serve. This gives you access to the full npm ecosystem for build tooling while keeping the runtime lean.

Node frameworks use Node for both build and runtime. The generated Dockerfile uses a multi-stage build with node:22-slim to keep the final image small.