diff --git a/src/nf_modules/file_handle/0.1.1/Dockerfile b/src/nf_modules/file_handle/0.1.1/Dockerfile
new file mode 100644
index 0000000000000000000000000000000000000000..0557983d5d16c686c577b5eee0ee1308086760fb
--- /dev/null
+++ b/src/nf_modules/file_handle/0.1.1/Dockerfile
@@ -0,0 +1,17 @@
+FROM ubuntu:18.04
+MAINTAINER Laurent Modolo
+
+ENV FILE_HANDLE_VERSION 0.1.1
+ENV PACKAGES git=1:2.17.0* \
+    ca-certificates=20180409
+
+
+RUN apt-get update && \
+    apt-get install -y --no-install-recommends ${PACKAGES} && \
+    apt-get clean
+
+RUN git clone https://github.com/LBMC/file_handle.git && \
+    cd file_handle && \
+    git checkout tags/v${FILE_HANDLE_VERSION} && \
+    cp src/file_handle.py /usr/bin/file_handle.py && \
+    chmod +x /usr/bin/file_handle.py
diff --git a/src/nf_modules/file_handle/0.1.1/docker_init.sh b/src/nf_modules/file_handle/0.1.1/docker_init.sh
new file mode 100755
index 0000000000000000000000000000000000000000..40644a7c9dd7f885c3f64a7c6dd1d9a8e85d1c0c
--- /dev/null
+++ b/src/nf_modules/file_handle/0.1.1/docker_init.sh
@@ -0,0 +1,2 @@
+#!/bin/sh
+docker build src/nf_modules/file_handle/0.1.1 -t 'file_handle:0.1.1'