diff --git a/src/singularity_modules/fastqc/0.11.5/build.sh b/src/singularity_modules/fastqc/0.11.5/build.sh
new file mode 100755
index 0000000000000000000000000000000000000000..1787f2b19fdd4771d3d30216fd6fec8f38f228f8
--- /dev/null
+++ b/src/singularity_modules/fastqc/0.11.5/build.sh
@@ -0,0 +1,3 @@
+#/bin/sh
+sudo singularity build --force bin/fastqc:0.11.5.sif src/singularity_modules/fastqc/0.11.5/fastqc.def
+singularity sign bin/fastqc:0.11.5.sif
diff --git a/src/singularity_modules/fastqc/0.11.5/fastqc.def b/src/singularity_modules/fastqc/0.11.5/fastqc.def
new file mode 100644
index 0000000000000000000000000000000000000000..d2bc5389676cca32fceb8377fd6d44db6efc8b85
--- /dev/null
+++ b/src/singularity_modules/fastqc/0.11.5/fastqc.def
@@ -0,0 +1,21 @@
+Bootstrap: docker
+From: ubuntu:18.04
+
+%labels
+MAINTAINER Laurent Modolo
+
+%post
+FASTQC_VERSION=0.11.5
+PACKAGES="fastqc=${FASTQC_VERSION}* \
+perl=5.26*"
+
+apt-get update && \
+apt-get install -y --no-install-recommends ${PACKAGES} && \
+apt-get clean
+
+%environment
+export FASTQC_VERSION=0.11.5
+export PACKAGES=fastqc=${FASTQC_VERSION}*
+
+%runscript
+exec /bin/bash "$@"