@ai-support-agent/cli 0.0.18-beta.0 → 0.0.18-beta.1

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 CHANGED
@@ -56,8 +56,10 @@ RUN curl -fSL "https://awscli.amazonaws.com/awscli-exe-linux-$(uname -m).zip" -o
56
56
  && rm -rf /tmp/aws /tmp/awscliv2.zip
57
57
 
58
58
  # AWS Session Manager Plugin
59
+ # Note: AWS uses "ubuntu_64bit" for x86_64/amd64 and "ubuntu_arm64" for arm64
59
60
  RUN ARCH=$(dpkg --print-architecture) \
60
- && curl -fSL "https://s3.amazonaws.com/session-manager-downloads/plugin/latest/ubuntu_${ARCH}/session-manager-plugin.deb" \
61
+ && if [ "$ARCH" = "amd64" ]; then SSM_ARCH="64bit"; else SSM_ARCH="$ARCH"; fi \
62
+ && curl -fSL "https://s3.amazonaws.com/session-manager-downloads/plugin/latest/ubuntu_${SSM_ARCH}/session-manager-plugin.deb" \
61
63
  -o /tmp/session-manager-plugin.deb \
62
64
  && dpkg -i /tmp/session-manager-plugin.deb \
63
65
  && rm /tmp/session-manager-plugin.deb
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ai-support-agent/cli",
3
- "version": "0.0.18-beta.0",
3
+ "version": "0.0.18-beta.1",
4
4
  "description": "AI Support Agent CLI client",
5
5
  "main": "dist/index.js",
6
6
  "bin": {