From c16af9067ba3534d5b8ac6a56cb6ff38100f308a Mon Sep 17 00:00:00 2001 From: Baptiste Bauvin <baptiste.bauvin@lis-lab.fr> Date: Wed, 22 Apr 2020 11:13:05 -0400 Subject: [PATCH] Modified docker file" --- docker/Dockerfile_ubuntu_18.04 | 38 ++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 docker/Dockerfile_ubuntu_18.04 diff --git a/docker/Dockerfile_ubuntu_18.04 b/docker/Dockerfile_ubuntu_18.04 new file mode 100644 index 0000000..2d2ab4b --- /dev/null +++ b/docker/Dockerfile_ubuntu_18.04 @@ -0,0 +1,38 @@ +FROM ubuntu:18.04 +MAINTAINER Dominique Benielli +WORKDIR / +ENV DEBIAN_FRONTEND noninteractive +RUN apt-get update && \ + apt-get upgrade -y && \ + apt-get install -y --no-install-recommends apt-utils \ + cmake \ + gcc \ + g++ \ + make \ + python3-dev \ + python3-setuptools \ + python3-pytest \ + python3-pytest-cov \ + python3-nose \ + python3-pip \ + python3-numpydoc \ + python3-matplotlib \ + python3-pil \ + libhdf5-dev \ + python3-tk \ + git \ + pandoc \ + && \ + apt-get clean +RUN apt-get install -y --no-install-recommends locales && \ + apt-get clean && \ + locale-gen en_US.UTF-8 && \ + update-locale en_US.UTF-8 && \ + echo "export LC_ALL=$(locale -a | grep en_US)" >> /root/.bashrc && \ + echo "export LANG=$(locale -a | grep en_US)" >> /root/.bashrc +COPY requirements.txt . +RUN pip3 install -r requirements.txt + + + + -- GitLab