diff --git a/src/.docker_modules/danpos3/2f7f223/Dockerfile b/src/.docker_modules/danpos3/2f7f223/Dockerfile
new file mode 100644
index 0000000000000000000000000000000000000000..f9b4f63308d3839f335c8ca128e920c669660432
--- /dev/null
+++ b/src/.docker_modules/danpos3/2f7f223/Dockerfile
@@ -0,0 +1,19 @@
+FROM ubuntu:20.04 
+
+ENV DANPOS_VERSION="2f7f223"
+ENV TZ=Europe/Paris
+RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone \
+&& apt update -qq \
+&& apt install --no-install-recommends software-properties-common -y dirmngr git python \
+&& wget -qO- https://cloud.r-project.org/bin/linux/ubuntu/marutter_pubkey.asc | tee -a /etc/apt/trusted.gpg.d/cran_ubuntu_key.asc \
+&& add-apt-repository "deb https://cloud.r-project.org/bin/linux/ubuntu $(lsb_release -cs)-cran40/"
+RUN apt-get update \
+&& apt-get install -y r-base=4.0.1 samtools \
+&& git clone https://github.com/sklasfeld/DANPOS3.git \
+&& cd DANPOS3 \
+&& git checkout $DANPOS_VERSION \
+&& pip install -r requirements.txt \
+&& chmod +x DANPOS3/*.py
+
+ENV PATH="/DANPOS3:${PATH}"
+CMD [ "bash" ]
diff --git a/src/.docker_modules/danpos3/2f7f223/docker_init.sh b/src/.docker_modules/danpos3/2f7f223/docker_init.sh
new file mode 100755
index 0000000000000000000000000000000000000000..7d82f74063c1d2a4fdeb1544decece72494cdd55
--- /dev/null
+++ b/src/.docker_modules/danpos3/2f7f223/docker_init.sh
@@ -0,0 +1,4 @@
+#!/bin/sh
+docker pull lbmc/danpos3:2f7f223
+docker build src/.docker_modules/danpos3/2f7f223 -t 'lbmc/danpos3:2f7f223'
+docker push lbmc/danpos3:2f7f223