@ai-support-agent/cli 0.0.12-beta.2 → 0.0.12-beta.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/docker/Dockerfile +4 -5
- package/package.json +1 -1
package/docker/Dockerfile
CHANGED
|
@@ -4,7 +4,9 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
|
4
4
|
ca-certificates curl unzip git openssh-client \
|
|
5
5
|
default-mysql-client postgresql-client \
|
|
6
6
|
gnupg apt-transport-https \
|
|
7
|
-
#
|
|
7
|
+
# Build tools for native addons (node-pty)
|
|
8
|
+
make g++ \
|
|
9
|
+
# Python 3 + pip (for document processing tools and node-gyp)
|
|
8
10
|
python3 python3-pip python3-venv \
|
|
9
11
|
# Pandoc (universal document converter: docx/pdf/html/markdown/etc.)
|
|
10
12
|
pandoc \
|
|
@@ -88,10 +90,7 @@ ARG AGENT_VERSION=latest
|
|
|
88
90
|
RUN npm install -g @anthropic-ai/claude-code @ai-support-agent/cli@${AGENT_VERSION} \
|
|
89
91
|
&& npm cache clean --force
|
|
90
92
|
|
|
91
|
-
# Create non-root user for security
|
|
92
|
-
RUN groupadd -g 1000 agent && useradd -m -u 1000 -g agent agent
|
|
93
|
-
|
|
94
93
|
WORKDIR /workspace
|
|
95
94
|
RUN chmod 777 /workspace
|
|
96
|
-
USER
|
|
95
|
+
USER node
|
|
97
96
|
ENTRYPOINT ["ai-support-agent"]
|