Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
T
ThePrimeBenchMark
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
nimrod
ThePrimeBenchMark
Commits
e3a36bc1
Commit
e3a36bc1
authored
9 years ago
by
nimrod
Browse files
Options
Downloads
Patches
Plain Diff
- Added Docker and Docker Compose support because I'm tired of installing everything.
parent
7d999b17
No related branches found
No related tags found
No related merge requests found
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
Dockerfile
+34
-0
34 additions, 0 deletions
Dockerfile
README.rst
+8
-3
8 additions, 3 deletions
README.rst
docker-compose.yml
+2
-0
2 additions, 0 deletions
docker-compose.yml
with
44 additions
and
3 deletions
Dockerfile
0 → 100644
+
34
−
0
View file @
e3a36bc1
FROM
debian:testing
ENV
LEIN_VERSION=2.5.3
ENV
LEIN_ROOT=value
WORKDIR
/tmp
RUN
apt-get update
&&
\
apt-get
install
-y
python
\
python3
\
pypy
\
lua5.1
\
luajit
\
build-essential
\
php5-cli
\
php7.0-cli
\
ruby
\
nodejs
\
nodejs-legacy
\
mawk
\
clojure1.6
\
tcl
\
time
\
wget
&&
\
mkdir
/tmp/leiningen
&&
\
wget
--quiet
https://github.com/technomancy/leiningen/archive/
$LEIN_VERSION
.tar.gz
-O
- |
\
tar
-xz
-C
/tmp/leiningen/
--strip-components
=
1
&&
\
mv
/tmp/leiningen/bin/lein-pkg /usr/local/bin/lein
&&
\
chmod
0755 /usr/local/bin/lein
&&
\
wget
--quiet
\
https://github.com/technomancy/leiningen/releases/download/
$LEIN_VERSION
/leiningen-
$LEIN_VERSION
-standalone
.zip
\
-O
/usr/share/java/leiningen-
$LEIN_VERSION
-standalone
.jar
&&
\
rm
-rf
rm
-rf
/var/lib/apt/lists/
*
/tmp/
*
/var/tmp/
*
COPY
./ /benchmark
WORKDIR
/benchmark
RUN
make
CMD
["make", "test"]
This diff is collapsed.
Click to expand it.
README.rst
+
8
−
3
View file @
e3a36bc1
...
@@ -20,18 +20,23 @@ Added languages
...
@@ -20,18 +20,23 @@ Added languages
Usage
Usage
-----
-----
Build: ::
Build:
.. code:: shell
make
make
Clean: ::
Clean:
.. code:: shell
make clean
make clean
Test: ::
Test:
.. code:: shell
make test
make test
Also, Docker and Docker Compose are supported (so just run :code:
`docker-compose up`).
History
History
-------
-------
...
...
This diff is collapsed.
Click to expand it.
docker-compose.yml
0 → 100644
+
2
−
0
View file @
e3a36bc1
testbed
:
build
:
./
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment