Created
November 25, 2018 00:58
-
-
Save devasat/0ed8afe03b23ce8de2572e303fa83dd5 to your computer and use it in GitHub Desktop.
Dockerfile for aws-cli
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM centos:7.5.1804 | |
RUN yum install epel-release -y && \ | |
yum -y update && \ | |
yum install -y python-pip && \ | |
pip install awscli --upgrade | |
# docker build -t username/aws-cli -f Dockerfile . | |
# docker push username/aws-cli |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment