Skip to content

Commit

Permalink
feat(sage-monorepo): add AWS SAM CLI to the devcontainer (ARCH-350) (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
tschaffter authored Dec 2, 2024
1 parent 966e8ee commit fab0893
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions tools/devcontainers/sage/.devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,13 @@ RUN curl -fsSL https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip -o awscl
&& dpkg -i /tmp/session-manager-plugin.deb \
&& rm -fr /tmp/session-manager-plugin.deb

# Install AWS SAM CLI
RUN curl -Lo aws-sam-cli-linux-x86_64.zip https://github.com/aws/aws-sam-cli/releases/latest/download/aws-sam-cli-linux-x86_64.zip \
&& unzip aws-sam-cli-linux-x86_64.zip -d sam-installation \
&& ./sam-installation/install \
&& rm -rf aws-sam-cli-linux-x86_64.zip sam-installation \
&& sam --version

# Install the devcontainer CLI
RUN npm install -g "@devcontainers/cli@${devcontainerCliVersion}"

Expand Down

0 comments on commit fab0893

Please sign in to comment.