Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,15 @@ RUN mkdir /tmp/helm_env/ && \
mv linux-amd64/helm /usr/local/bin/helm && \
rm helm-v${HELM_VERSION}-linux-amd64.tar.gz

# Install AwsCLI
ARG AWSCLI_VERSION=2.15.24
RUN mkdir /tmp/awscli_env/ && \
cd /tmp/awscli_env/ && \
wget "https://awscli.amazonaws.com/awscli-exe-linux-x86_64-${AWSCLI_VERSION}.zip" && \
unzip awscli-exe-linux-x86_64-${AWSCLI_VERSION}.zip && \
./aws/install && \
rm awscli-exe-linux-x86_64-${AWSCLI_VERSION}.zip

# Cleanup
RUN apt-get clean && \
rm -rf /var/lib/apt/lists/*
Expand Down
10 changes: 9 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,19 @@ Before you begin, make sure you have [Docker](https://docs.docker.com/engine/ins
docker run --rm devops-toolkit python3 --version
```

<!-- 5. **Customize the Build (Optional):** -->
<!-- . **Customize the Build (Optional):** -->

## Use the image from Docker Hub
- To be implemented

## Test the image
- Run
```bash
cd scripts
chmod +x check_version_in_toolkit.sh
.check_version_in_toolkit.sh devops-toolkit
```

## Contributing

- See: [CONTRIBUTING.md](./CONTRIBUTING.md)
Expand Down
1 change: 1 addition & 0 deletions scripts/check_version_in_toolkit.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ declare -A tools=(
[terraform]="1.7.4"
[kubectl]="1.29.2"
[helm]="3.14.2"
[aws]="2.15.24"
# Add more tools as needed
)

Expand Down