├── Dockerfile ├── LICENSE ├── README.md └── hello.ts /Dockerfile: -------------------------------------------------------------------------------- 1 | FROM oven/bun:latest 2 | COPY . . 3 | ENTRYPOINT ["bun", "./hello.ts"] -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steren/cloud-run-bun/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steren/cloud-run-bun/HEAD/README.md -------------------------------------------------------------------------------- /hello.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steren/cloud-run-bun/HEAD/hello.ts --------------------------------------------------------------------------------