A simple Bluesky bot to make sense of the noise, with responses powered by Gemini, similar to Grok.

Update Dockerfile

Changed files
+11
+11
Dockerfile
··· 8 8 9 9 COPY . . 10 10 11 + ENV AUTHORIZED_USERS="" 12 + ENV SERVICE="https://bsky.social" 13 + ENV DB_PATH="data/sqlite.db" 14 + ENV GEMINI_MODEL="gemini-2.5-flash" 15 + ENV ADMIN_DID="" 16 + ENV ADMIN_HANDLE="" 17 + ENV DID="" 18 + ENV HANDLE="" 19 + ENV BSKY_PASSWORD="" 20 + ENV GEMINI_API_KEY="" 21 + 11 22 CMD ["bun", "start"]