refactor: replace MJPEG streaming with screenshot + meta-refresh #1

Merged
biggy merged 12 commits from deepseek-fix into main 2026-05-13 11:12:36 +02:00
2 changed files with 12 additions and 0 deletions
Showing only changes of commit aadb241986 - Show all commits
+12
View File
@@ -0,0 +1,12 @@
FROM bun:latest
WORKDIR /app
COPY package.json bun.lock ./
RUN bun install --production
COPY . .
EXPOSE 3099
CMD ["bun", "run", "start"]
View File