forked from stg-tud/MUBench
-
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.
added ci dockerfile + fixed UTF8 encoding error
- Loading branch information
Bob the Builder
committed
Sep 21, 2016
1 parent
d128448
commit a4cb5ab
Showing
3 changed files
with
13 additions
and
1 deletion.
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
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,12 @@ | ||
FROM svamann/mubench:latest | ||
|
||
RUN add-apt-repository ppa:ondrej/php | ||
RUN add-apt-repository -y ppa:ondrej/mysql-5.6 | ||
RUN apt-get update | ||
|
||
RUN apt-get install php5.6 | ||
RUN apt-get install mysql-server | ||
|
||
RUN wget https://phar.phpunit.de/phpunit.phar | ||
RUN chmod +x phpunit.phar | ||
RUN mv phpunit.phar /usr/local/bin/phpunit |
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