-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8d9351e
commit 38b2cb5
Showing
1 changed file
with
15 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
FROM circleci/php:7.2-jessie-node-browsers | ||
|
||
RUN sudo apt-get update \ | ||
&& sudo apt-get upgrade \ | ||
&& sudo apt-get install zlib1g-dev libsqlite3-dev tar gzip libyaml-dev libcurl3 | ||
|
||
RUN sudo docker-php-ext-install zip bcmath pdo pdo_mysql | ||
|
||
RUN sudo apt install python3 python3-venv python3-pip python3-yaml python3-socksipy build-essential | ||
RUN sudo pip3 install awscli | ||
RUN sudo pip3 install awsebcli --upgrade | ||
|
||
RUN sudo curl -L https://github.com/docker/compose/releases/download/1.23.2/docker-compose-`uname -s`-`uname -m` > ~/docker-compose \ | ||
&& sudo chmod +x ~/docker-compose \ | ||
&& sudo mv ~/docker-compose /usr/local/bin/docker-compose |