@ai-support-agent/cli 0.0.12-beta.2 → 0.0.12-beta.3
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 +1 -4
- package/package.json +1 -1
package/docker/Dockerfile
CHANGED
|
@@ -88,10 +88,7 @@ ARG AGENT_VERSION=latest
|
|
|
88
88
|
RUN npm install -g @anthropic-ai/claude-code @ai-support-agent/cli@${AGENT_VERSION} \
|
|
89
89
|
&& npm cache clean --force
|
|
90
90
|
|
|
91
|
-
# Create non-root user for security
|
|
92
|
-
RUN groupadd -g 1000 agent && useradd -m -u 1000 -g agent agent
|
|
93
|
-
|
|
94
91
|
WORKDIR /workspace
|
|
95
92
|
RUN chmod 777 /workspace
|
|
96
|
-
USER
|
|
93
|
+
USER node
|
|
97
94
|
ENTRYPOINT ["ai-support-agent"]
|