Skip to content

Commit

Permalink
Bump aws-cli image to 2.13.15
Browse files Browse the repository at this point in the history
  • Loading branch information
taylorific committed Sep 4, 2023
1 parent cfc86a6 commit 45dc084
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
# If it's not configured, the repository default branch is used.
base: ${{ github.ref }}
filters: |
aws-cli: 'aws-cli/*'
aws-cli: 'aws-cli/**'
bats: 'bats/**'
black: 'black/**'
bootstrap/cinc-auditor: 'bootstrap/cinc-auditor/**'
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ Open container images for robotics, neuromorphic engineering, systems and embedd

| Image | Description | Location
| --- | --- | --- |
| [aws-cli](https://hub.docker.com/r/boxcutter/aws-cli) | Amazon Web Services Command-Line Interface | [aws-cli](https://github.com/boxcutter/oci/tree/main/aws-cli)
| [bats](https://hub.docker.com/r/boxcutter/bats) | Bash Automated Testing System | [bats](https://github.com/boxcutter/oci/tree/main/bats) |
| [black](https://hub.docker.com/r/boxcutter/black) | The uncompromising Python code formatter | [black](https://github.com/boxcutter/oci/tree/main/black) |
| [buildpack-deps](https://hub.docker.com/r/boxcutter/buildpack-deps) | A collection of common build dependencies used for installing various modules, e.g., gems | [buildpack-deps](https://github.com/boxcutter/oci/tree/main/buildpack-deps) |
Expand Down
8 changes: 4 additions & 4 deletions aws-cli/Containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ ARG CONTAINER_REGISTRY=docker.io
FROM $CONTAINER_REGISTRY/amazonlinux:2 as installer

LABEL \
org.opencontainers.image.source="https://github.com/polymathrobotics/oci" \
org.opencontainers.image.source="https://github.com/boxcutter/oci" \
org.opencontainers.image.licenses="Apache-2.0" \
org.opencontainers.image.description="AWS command-line interface."

Expand All @@ -14,13 +14,13 @@ RUN yum update -y \
&& arch="$(arch)" \
&& case "${arch##*-}" in \
x86_64) \
AWS_CLI_URL='https://awscli.amazonaws.com/awscli-exe-linux-x86_64-2.13.7.zip' \
AWS_CLI_URL='https://awscli.amazonaws.com/awscli-exe-linux-x86_64-2.13.15.zip' \
;; \
aarch64) \
AWS_CLI_URL='https://awscli.amazonaws.com/awscli-exe-linux-aarch64-2.13.7.zip' \
AWS_CLI_URL='https://awscli.amazonaws.com/awscli-exe-linux-aarch64-2.13.15.zip' \
;; \
armv7l) \
AWS_CLI_URL='https://awscli.amazonaws.com/awscli-exe-linux-armv7l-2.13.7.zip' \
AWS_CLI_URL='https://awscli.amazonaws.com/awscli-exe-linux-armv7l-2.13.15.zip' \
;; \
*) echo "unsupported architecture"; exit 1 ;; \
esac \
Expand Down
2 changes: 1 addition & 1 deletion aws-cli/Polly.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[container_image]
tags=["2.13.7", "latest"]
tags=["2.13.15", "latest"]
platforms=["linux/arm64","linux/amd64"]

0 comments on commit 45dc084

Please sign in to comment.