Created
October 20, 2019 20:12
-
-
Save slavafomin/ce487a407c736addcb83819be262d58a to your computer and use it in GitHub Desktop.
Installing s3cmd in AWS CodeBuild instance using yum (Amazon Linux 2)
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
version: 0.2 | |
phases: | |
install: | |
commands: | |
# Installing "s3cmd" deployment utility | |
- >- | |
yum install -y https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm && | |
yum update -y && | |
yum install s3cmd -y |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment