All checks were successful
Build Nanobot OAuth / build (push) Successful in 2m45s
- 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>
12 lines
275 B
Docker
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"]
|