Skip to content

Instantly share code, notes, and snippets.

@slavafomin
Created October 20, 2019 20:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save slavafomin/ce487a407c736addcb83819be262d58a to your computer and use it in GitHub Desktop.
Save slavafomin/ce487a407c736addcb83819be262d58a to your computer and use it in GitHub Desktop.
Installing s3cmd in AWS CodeBuild instance using yum (Amazon Linux 2)
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