diff --git a/scripts/Dockerfile b/scripts/Dockerfile new file mode 100644 index 0000000000000000000000000000000000000000..42cd7472a48d0ebca4f91648c927b22ef6361754 --- /dev/null +++ b/scripts/Dockerfile @@ -0,0 +1,8 @@ +FROM debian:latest +MAINTAINER Ludovic Apvrille <ludovic.apvrille@telecom-paris.fr> +RUN apt-get clean +RUN apt-get update +RUN apt-get -y install apt-utils +RUN apt-get -y install make git-core python3 +RUN update-alternatives --install /usr/bin/python \ + python /usr/bin/python3 2 \ No newline at end of file diff --git a/scripts/eval.sh b/scripts/eval.sh new file mode 100755 index 0000000000000000000000000000000000000000..3cab5ac67bc54f49c1f01d4aed334a692c89d7cf --- /dev/null +++ b/scripts/eval.sh @@ -0,0 +1,5 @@ +#!/usr/bin/env bash + +printf 'SUCCESS\n' + +exit 0