-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3492 from michaelhixson/master
Put the docker branch into the master branch
- Loading branch information
Showing
2,260 changed files
with
16,278 additions
and
43,203 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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,22 @@ | ||
FROM ubuntu:16.04 | ||
|
||
# One -q produces output suitable for logging (mostly hides | ||
# progress indicators) | ||
RUN apt-get -yq update | ||
|
||
# WARNING: DONT PUT A SPACE AFTER ANY BACKSLASH OR APT WILL BREAK | ||
RUN apt-get -qqy install -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" \ | ||
git-core \ | ||
cloc dstat `# Collect resource usage statistics` \ | ||
python-dev \ | ||
python-pip \ | ||
python-software-properties \ | ||
libmysqlclient-dev `# Needed for MySQL-python` \ | ||
libpq-dev `# Needed for psycopg2` | ||
|
||
RUN pip install colorama==0.3.1 requests MySQL-python psycopg2-binary pymongo docker==3.1.0 | ||
|
||
ENV PYTHONPATH /FrameworkBenchmarks | ||
ENV FWROOT /FrameworkBenchmarks | ||
|
||
ENTRYPOINT ["python", "/FrameworkBenchmarks/toolset/run-tests.py"] |
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 was deleted.
Oops, something went wrong.
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
This file was deleted.
Oops, something went wrong.
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
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,24 @@ | ||
FROM techempower/gcc-4.8:0.1 | ||
|
||
WORKDIR /installs | ||
|
||
ENV VERSION=0.2.3 | ||
ENV CPPSP_HOME=/installs/cppsp_$VERSION | ||
|
||
RUN wget -q http://downloads.sourceforge.net/project/cpollcppsp/CPPSP%200.2%20%28testing%29/cppsp_$VERSION.tar.xz | ||
RUN tar xf cppsp_$VERSION.tar.xz | ||
|
||
RUN mv cppsp_rel$VERSION/ $CPPSP_HOME | ||
|
||
RUN sed -i 's|CXX := .*|CXX := g++-4.8|g' $CPPSP_HOME/makefile | ||
RUN sed -i 's|-Wall|-w|g' $CPPSP_HOME/makefile | ||
|
||
RUN apt install -yqq postgresql-server-dev-9.5 | ||
ENV CPLUS_INCLUDE_PATH=/usr/include/postgresql:/usr/include/postgresql/9.5/server:${CPLUS_INCLUDE_PATH} | ||
|
||
ADD ./ /cpoll_cppsp | ||
WORKDIR /cpoll_cppsp | ||
|
||
RUN make clean && make | ||
|
||
WORKDIR $CPPSP_HOME |
3 changes: 3 additions & 0 deletions
3
frameworks/C++/cpoll_cppsp/cpoll_cppsp-postgres-raw-threadpool.dockerfile
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,3 @@ | ||
FROM techempower/cpoll_cppsp-base:0.1 | ||
|
||
CMD ./run_application /cpoll_cppsp/www -g g++-4.8 -m /forcedynamic.cppsm |
3 changes: 3 additions & 0 deletions
3
frameworks/C++/cpoll_cppsp/cpoll_cppsp-postgres-raw.dockerfile
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,3 @@ | ||
FROM techempower/cpoll_cppsp-base:0.1 | ||
|
||
CMD ./run_application /cpoll_cppsp/www -g g++-4.8 -m /forcedynamic.cppsm |
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,3 @@ | ||
FROM techempower/cpoll_cppsp-base:0.1 | ||
|
||
CMD ./run_application /cpoll_cppsp/www -g g++-4.8 -m /forcedynamic.cppsm |
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,3 @@ | ||
FROM techempower/cpoll_cppsp-base:0.1 | ||
|
||
CMD ./run_application /cpoll_cppsp/www -g g++-4.8 -m /forcedynamic.cppsm |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 was deleted.
Oops, something went wrong.
Oops, something went wrong.