Files
nanobot/Dockerfile.oauth
wylab e1a98d68ff
All checks were successful
Build Nanobot OAuth / build (push) Successful in 2m45s
ci: add Docker build workflow and fix gateway CMD
- Add .github/workflows/build.yml to auto-build and push to Gitea registry
- Change Dockerfile.oauth CMD from "status" to "gateway" for persistent container

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-13 14:25:32 +01:00

12 lines
275 B
Docker

FROM birdxs/nanobot:latest
# Copy full project (pyproject.toml + source)
COPY pyproject.toml README.md LICENSE /app/
COPY nanobot/ /app/nanobot/
# Install with all dependencies
RUN uv pip install --system --no-cache --reinstall /app
ENTRYPOINT ["nanobot"]
CMD ["gateway"]