brew tap Yleisradio/terraforms
brew install chtf
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 ubuntu:16.04 | |
RUN echo "[INFO]::[installing]::[base packages]" \ | |
&& apt-get update \ | |
&& apt-get install -y --no-install-recommends --no-install-suggests \ | |
software-properties-common libssl-dev libmcrypt-dev openssl ca-certificates \ | |
git ntp curl tzdata bzip2 libfontconfig1 phantomjs mysql-client sudo jq \ | |
&& apt-get autoclean && apt-get clean && apt-get autoremove -y && apt-get clean && rm -rf /var/lib/apt/lists/* | |
RUN echo "[INFO]::[installing]::[java packages]" \ |
- Install PHP Compose dependencies locally, assuming current directory has a composer.json file already defined.
- This will run through the install and save the vendors/ directory in your current working directly.
- This is useful when you don't have the required php or composer version or just want to ensure you don't muck up your local with any odd requirements.
docker run --rm \
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
#!/usr/bin/env bash | |
set -e | |
#:-{Define Functions Ya'll}-------------------------------------------------------------------------------> | |
function install_brew { | |
# install xcode cli tools. (required dependency for homebrew and life in general) | |
if [ ! $(pkgutil --pkgs=com.apple.pkg.CLTools_Executables) ]; then |