To develop with Elysia in Docker, you can use the following minimal docker compose template:
# docker-compose.ymlversion:"3.9"services:app:image:"oven/bun"# override default entrypoint allows us to do `bun install` before servingentrypoint:[]# execute bun install before we start the dev server in watch modecommand:"/bin/sh -c 'bun install && bun run --watch src/index.ts'"# expose the right portsports:["3000:3000"]# setup a host mounted volume to sync changes to the containervolumes:["./:/home/bun/app"]