From d0f5ce00db6216e33b6d428aad184c58a64007be Mon Sep 17 00:00:00 2001 From: Henke Adolfsson <catears13@gmail.com> Date: Fri, 16 Mar 2018 09:11:14 +0100 Subject: [PATCH] Add dockerfile for testrunner --- Dockerfile | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..7974241 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,8 @@ +# This is the dockerfile that is used by the testrunner + +FROM ubuntu +RUN apt-get update -y && apt-get upgrade -y && apt-get install -y python3-dev python3-pip build-essential locales locales-all +RUN pip3 install --upgrade pip && pip3 install virtualenv +ENV LANG en_US.UTF-8 +ENV LANGUAGE en_US.UTF-8 +ENV LC_ALL en_US.UTF-8 \ No newline at end of file -- GitLab