From 8ef3ac685a4d8fdd3b1c6f40735f07c462793cc1 Mon Sep 17 00:00:00 2001
From: Dominique Benielli <dominique.benielli@univ-amu.fr>
Date: Wed, 24 May 2023 18:27:24 +0200
Subject: [PATCH] Add new file

---
 docker/Dockerfile_ubuntu_22.04 | 30 ++++++++++++++++++++++++++++++
 1 file changed, 30 insertions(+)
 create mode 100644 docker/Dockerfile_ubuntu_22.04

diff --git a/docker/Dockerfile_ubuntu_22.04 b/docker/Dockerfile_ubuntu_22.04
new file mode 100644
index 0000000..0d63fda
--- /dev/null
+++ b/docker/Dockerfile_ubuntu_22.04
@@ -0,0 +1,30 @@
+FROM ubuntu:22.04
+MAINTAINER Dominique Benielli
+WORKDIR /
+ENV DEBIAN_FRONTEND noninteractive
+RUN apt-get update && \
+    apt-get upgrade -y && \
+    apt-get install -y --no-install-recommends \
+        python3 \
+        python3-setuptools \
+        python3-sklearn\
+        python3-pytest \
+        python3-pytest-cov \
+        python3-nose \
+        python3-sphinx \
+        python3-numpydoc \
+        python3-sphinx-gallery \
+        python3-matplotlib \
+        python3-pil \
+        python3-tk \   
+        python3-pip \    
+        && \
+    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