The recipes.blue monorepo recipes.blue
recipes appview atproto

feat: build fix(?)

+4
+2
Dockerfile
··· 9 9 RUN --mount=type=cache,id=pnpm,target=/pnpm/store pnpm fetch 10 10 COPY . . 11 11 RUN --mount=type=cache,id=pnpm,target=/pnpm/store pnpm install --frozen-lockfile 12 + 13 + ARG VITE_API_SERVICE 12 14 RUN pnpm run -r build
+2
fly.toml
··· 3 3 4 4 [build] 5 5 dockerfile = "Dockerfile" 6 + [build.args] 7 + VITE_API_SERVICE = "recipes.blue" 6 8 7 9 [processes] 8 10 web = "bash -c 'cd apps/api && node dist/index.js'"