File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed
Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff 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 && \
Original file line number Diff line number Diff line change 11"""Bender — Open-source framework connecting Slack to Claude Code in headless mode."""
22
3- __version__ = "0.0.3 "
3+ __version__ = "0.0.4 "
You can’t perform that action at this time.
0 commit comments