diff --git a/src/singularity_modules/BEDtools/2.25.0/BEDtools.def b/src/singularity_modules/BEDtools/2.25.0/BEDtools.def
new file mode 100644
index 0000000000000000000000000000000000000000..0ca0f9ef362991a45cc0bf101ed82d81de356d60
--- /dev/null
+++ b/src/singularity_modules/BEDtools/2.25.0/BEDtools.def
@@ -0,0 +1,19 @@
+Bootstrap: docker
+From: ubuntu:16.04
+
+%labels
+MAINTAINER Laurent Modolo
+
+%post
+BEDTOOLS_VERSION=2.25.0
+PACKAGES=bedtools=${BEDTOOLS_VERSION}*
+
+apt-get update && \
+apt-get install -y --no-install-recommends ${PACKAGES} && \
+apt-get clean
+
+%environment
+export BEDTOOLS_VERSION=2.25.0
+
+%runscript
+exec /bin/bash "$@"
diff --git a/src/singularity_modules/BEDtools/2.25.0/build.sh b/src/singularity_modules/BEDtools/2.25.0/build.sh
new file mode 100755
index 0000000000000000000000000000000000000000..a7c8b82241798efc8bc122948932f0ad56b3730f
--- /dev/null
+++ b/src/singularity_modules/BEDtools/2.25.0/build.sh
@@ -0,0 +1,2 @@
+#/bin/sh
+sudo singularity build --force /bin/bedtools:2.25.0.sif src/singularity_modules/BEDtools/2.25.0/BEDtools.def