File tree Expand file tree Collapse file tree 1 file changed +7
-8
lines changed Expand file tree Collapse file tree 1 file changed +7
-8
lines changed Original file line number Diff line number Diff line change 22# build with: docker build -t nativejson-benchmark .
33FROM debian:jessie
44
5+ RUN buildDeps='build-essential gcc-multilib g++-multilib git-core curl ca-certificates php5-cli libboost-all-dev' ; \
6+ set -x \
7+ && apt-get update && apt-get install --no-install-recommends -y $buildDeps
8+
59COPY . /nativejson-benchmark
610WORKDIR /nativejson-benchmark
711ENV PATH $PATH:/nativejson-benchmark/build
812
9- RUN buildDeps='build-essential gcc-multilib g++-multilib git-core curl ca-certificates php5-cli libboost-all-dev' ; \
10- set -x \
11- && apt-get update && apt-get install --no-install-recommends -y $buildDeps \
12- && cd /nativejson-benchmark \
13- && git submodule update --init \
14- && cd build \
13+ RUN set -x \
14+ && cd /nativejson-benchmark/build \
1515 && curl -L -s https://github.com/premake/premake-core/releases/download/v5.0.0-alpha7/premake-5.0.0-alpha7-linux.tar.gz | tar -xvz \
1616 && chmod +x premake5 && chmod +x premake.sh && sync && /bin/sh -c ./premake.sh && ./machine.sh \
1717 && cd /nativejson-benchmark && make \
1818 && cd /nativejson-benchmark/bin \
1919 && for t in *; do ./$t; done \
20- && cd /nativejson-benchmark/result && make \
21- && apt-get purge -y --auto-remove $buildDeps
20+ && cd /nativejson-benchmark/result && make
2221
2322VOLUME ["/nativejson-benchmark/output" ]
You can’t perform that action at this time.
0 commit comments