Skip to content

Commit

Permalink
#32 give x permissions
Browse files Browse the repository at this point in the history
  • Loading branch information
brady-gsa committed Dec 18, 2019
1 parent 0ccfc90 commit 7306c4b
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,15 @@ jobs:
- run:
name: install docker-compose
command: |
curl -L https://github.com/docker/compose/releases/download/1.25.0/docker-compose-`uname -s`-`uname -m` > ~/docker-compose
chmod +x ~/docker-compose
mv ~/docker-compose /usr/local/bin/docker-compose
apk add py-pip
apk add python-dev
apk add libffi-dev
apk add openssl-dev
apk add gcc
apk add libc-dev
apk add make
curl -L "https://github.com/docker/compose/releases/download/1.25.0/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose
sudo chmod +x /usr/local/bin/docker-compose
which docker-compose
apk add file
file /usr/local/bin/docker-compose
Expand Down

0 comments on commit 7306c4b

Please sign in to comment.