Skip to content

Commit 834fa43

Browse files
barckcodeclaude
andcommitted
Add AWS CLI to infra Dockerfile and bump version to 0.0.4
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 957c74d commit 834fa43

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

docker/Dockerfile

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,11 @@ RUN apt-get update && \
2020
# argocd
2121
curl -fsSL "https://github.com/argoproj/argo-cd/releases/download/v${ARGOCD_VERSION}/argocd-linux-${TARGETARCH}" \
2222
-o /usr/local/bin/argocd && chmod +x /usr/local/bin/argocd && \
23+
# aws cli
24+
AWS_ARCH=$([ "${TARGETARCH}" = "arm64" ] && echo "aarch64" || echo "x86_64") && \
25+
curl -fsSL "https://awscli.amazonaws.com/awscli-exe-linux-${AWS_ARCH}.zip" \
26+
-o /tmp/awscliv2.zip && unzip /tmp/awscliv2.zip -d /tmp && \
27+
/tmp/aws/install && rm -rf /tmp/awscliv2.zip /tmp/aws && \
2328
# cleanup
2429
apt-get purge -y unzip && \
2530
apt-get autoremove -y && \

src/bender/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""Bender — Open-source framework connecting Slack to Claude Code in headless mode."""
22

3-
__version__ = "0.0.3"
3+
__version__ = "0.0.4"

0 commit comments

Comments
 (0)