Skip to content

Deploy your Astro Site to Fly.io

How to deploy your Astro site to the web using Fly.io.

You can deploy your Astro project to Fly.io, a platform for running full stack apps and databases close to your users.

Your Astro project can be deployed to Fly.io as a static site, or as a server-side rendered site (SSR).

Your Astro project is a static site by default. You don’t need any extra configuration to deploy a static Astro site to Fly.io.

To enable on-demand rendering in your Astro project and deploy on Fly.io, add the Node.js adapter.

If you don’t already have a Dockerfile, fly launch will generate one for you, as well as prepare a fly.toml file. For pages rendered on demand, this Dockerfile will include the appropriate start command and environment variables.

You can instead create your own Dockerfile using Dockerfile generator and then run using the command npx dockerfile for Node applications or bunx dockerfile for Bun applications.