feat: scaffold baseos runtime

This commit is contained in:
2026-05-07 15:53:15 +00:00
commit ce41f41169
14 changed files with 897 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
FROM denoland/deno:alpine
WORKDIR /app
COPY deno.json mod.ts ./
COPY ts ./ts
RUN deno cache mod.ts
CMD ["run", "--allow-env", "--allow-net", "--allow-read=/data/baseos,.", "--allow-write=/data/baseos", "mod.ts", "start"]