From 29de5ba02618fc39a81ed8fe3ce6945d04b3083f Mon Sep 17 00:00:00 2001
From: Ludovic Apvrille <ludovic.apvrille@telecom-paris.fr>
Date: Fri, 1 Oct 2021 16:57:33 +0200
Subject: [PATCH] adding scripts for eval

---
 scripts/Dockerfile | 8 ++++++++
 scripts/eval.sh    | 5 +++++
 2 files changed, 13 insertions(+)
 create mode 100644 scripts/Dockerfile
 create mode 100755 scripts/eval.sh

diff --git a/scripts/Dockerfile b/scripts/Dockerfile
new file mode 100644
index 0000000000..42cd7472a4
--- /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 0000000000..3cab5ac67b
--- /dev/null
+++ b/scripts/eval.sh
@@ -0,0 +1,5 @@
+#!/usr/bin/env bash
+
+printf 'SUCCESS\n'
+
+exit 0
-- 
GitLab