Skip to content

use recent AWS CLI version #14

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project follows [osixia/openldap](https://github.com/osixia/docker-openldap-backup) versioning.

## [1.5.1] - unpublished
### Changed
- Upgrade awscli to recent version for better support of AWS EKS

## [1.5.0] - 2021-02-19
### Changed
- Upgrade baseimage to openldap:1.5.0
Expand Down
5 changes: 3 additions & 2 deletions image/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,10 @@ FROM osixia/openldap:1.5.0
#  https://github.com/osixia/docker-light-baseimage/blob/master/image/service-available/:cron/download.sh
RUN apt-get -y update \
&& /container/tool/add-multiple-process-stack \
&& apt-get install -y awscli \
&& apt-get install -y python3-pip \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* \
&& pip3 install awscli==1.20.24

# Add service directory to /container/service
ADD service /container/service
Expand Down