Closed georgevanburgh closed 9 years ago
Added C# version, and associated build/run scripts.
Also improved Dockerfile to correctly invalidate the cache when new code is checked in - like so:
ADD https://github.com/luke5542/LanguageComparison/archive/master.zip /root/
...will hash the latest zip file from the master branch, and only run the following layers if the hash is different from the last build.
# Compile all the code RUN \ cd /root && \ unzip master && \ cd LanguageComparison-master && \ ./compile-all
Will the compile the code as before.
Added C# version, and associated build/run scripts.
Also improved Dockerfile to correctly invalidate the cache when new code is checked in - like so:
...will hash the latest zip file from the master branch, and only run the following layers if the hash is different from the last build.
Will the compile the code as before.