You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
234 B

9 years ago
9 years ago
9 years ago
9 years ago
  1. #!/bin/sh
  2. # exit if a command fails
  3. set -eo pipefail
  4. apk update
  5. # install mysqldump
  6. apk add mysql-client
  7. apk add mariadb-connector-c
  8. # install s3 tools
  9. apk add python3 py3-pip
  10. pip install awscli
  11. # cleanup
  12. rm -rf /var/cache/apk/*