@inetafrica/open-claudia 1.7.2 → 1.7.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.
Files changed (2) hide show
  1. package/Dockerfile +2 -2
  2. package/package.json +1 -1
package/Dockerfile CHANGED
@@ -12,7 +12,7 @@ RUN curl -fsSL https://claude.ai/install.sh | sh || \
12
12
  npm install -g @anthropic-ai/claude-code
13
13
 
14
14
  # Create non-root user (Claude Code refuses --dangerously-skip-permissions as root)
15
- RUN groupadd -r claudia && useradd -r -g claudia -m -d /data claudia
15
+ RUN groupadd -g 1000 claudia && useradd -u 1000 -g 1000 -m -d /data claudia
16
16
 
17
17
  # Create app directory
18
18
  WORKDIR /app
@@ -41,7 +41,7 @@ VOLUME /data
41
41
  EXPOSE 8080
42
42
 
43
43
  # Switch to non-root user
44
- USER claudia
44
+ USER 1000
45
45
 
46
46
  ENTRYPOINT ["docker-entrypoint.sh"]
47
47
  CMD ["node", "bin/cli.js", "web"]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@inetafrica/open-claudia",
3
- "version": "1.7.2",
3
+ "version": "1.7.3",
4
4
  "description": "Your always-on AI coding assistant — Claude Code via Telegram",
5
5
  "main": "bot.js",
6
6
  "bin": {