aboutsummaryrefslogtreecommitdiffstats
path: root/ansible/test-files/docker-cppjit
diff options
context:
space:
mode:
Diffstat (limited to 'ansible/test-files/docker-cppjit')
-rw-r--r--ansible/test-files/docker-cppjit/Dockerfile4
1 files changed, 3 insertions, 1 deletions
diff --git a/ansible/test-files/docker-cppjit/Dockerfile b/ansible/test-files/docker-cppjit/Dockerfile
index 7b4416cb8..738c1c5fb 100644
--- a/ansible/test-files/docker-cppjit/Dockerfile
+++ b/ansible/test-files/docker-cppjit/Dockerfile
@@ -34,6 +34,9 @@ RUN add-apt-repository ppa:ethereum/ethereum
RUN apt-get update
RUN apt-get install -qy libcryptopp-dev libjson-rpc-cpp-dev
+# this is a workaround, to make sure that docker's cache is invalidated whenever the git repo changes
+ADD https://api.github.com/repos/ethereum/cpp-ethereum/git/refs/heads/develop unused.txt
+
# Build Ethereum (HEADLESS)
RUN git clone --depth=1 --branch develop https://github.com/ethereum/cpp-ethereum
RUN mkdir -p cpp-ethereum/build
@@ -41,4 +44,3 @@ RUN cd cpp-ethereum/build && cmake .. -DCMAKE_BUILD_TYPE=Release -DHEADLESS=1 -D
RUN ldconfig
ENTRYPOINT ["/cpp-ethereum/build/test/checkRandomTest"]
-