diff --git a/test/ci/manylinux/Dockerfile b/test/ci/manylinux/Dockerfile
new file mode 100644
index 000000000..8fdde3d81
--- /dev/null
+++ b/test/ci/manylinux/Dockerfile
@@ -0,0 +1,10 @@
+FROM quay.io/pypa/manylinux2010_x86_64
+MAINTAINER Guillaume Anciaux <guillaume.anciaux@epfl.ch>
+
+RUN git clone https://github.com/spack/spack.git
+RUN yum install -y xz
+RUN mkdir -p /root/.spack/linux/
+COPY compilers.yaml /root/.spack/linux/
+RUN spack/bin/spack install perl
+# RUN /spack/bin/spack install akantu@master external_solvers=mumps ~mpi ^mumps~mpi
+
diff --git a/test/ci/manylinux/compilers.yaml b/test/ci/manylinux/compilers.yaml
new file mode 100644
index 000000000..e3b3baad7
--- /dev/null
+++ b/test/ci/manylinux/compilers.yaml
@@ -0,0 +1,16 @@
+compilers:
+- compiler:
+    paths:
+      cc: /opt/rh/devtoolset-8/root/usr/bin/gcc
+      cxx: /opt/rh/devtoolset-8/root/usr/bin/g++
+      f77: /opt/rh/devtoolset-8/root/usr/bin/gfortran
+      fc: /opt/rh/devtoolset-8/root/usr/bin/gfortran
+    operating_system: centos6
+    target: x86_64
+    modules: []
+    environment:
+      set:
+        LD_LIBRARY_PATH: /usr/local/lib
+    extra_rpaths: []
+    flags: {}
+    spec: gcc@8.3.1
\ No newline at end of file