- Implemented role parsing and loading from markdown files, including attributes like name, side, focus, badge, color, and personality. - Created functions to build prompts for analysis, line location, and verdicts based on roles. - Added tests for role management functionalities to ensure correct parsing and loading of roles. - Developed usage tracking for AI assistant interactions, including token usage and rate limits. - Implemented functions to extract and record usage data from various LLM providers. - Added tests for usage tracking functionalities to validate correct accumulation and reporting of usage statistics.
12 lines
243 B
Docker
12 lines
243 B
Docker
FROM alpine:latest
|
|
|
|
# 安裝必要的工具
|
|
RUN apk add --no-cache --no-check-certificate bash nodejs npm
|
|
|
|
COPY ./app /app
|
|
RUN cd /app && npm install
|
|
|
|
COPY entrypoint.sh /entrypoint.sh
|
|
RUN chmod +x /entrypoint.sh
|
|
|
|
ENTRYPOINT ["/entrypoint.sh"] |