diff --git a/src/nf_modules/HTSeq/0.8.0/Dockerfile b/src/nf_modules/HTSeq/0.8.0/Dockerfile
new file mode 100644
index 0000000000000000000000000000000000000000..c655738fea3d89292f9ef5a9068893aafb6f38a1
--- /dev/null
+++ b/src/nf_modules/HTSeq/0.8.0/Dockerfile
@@ -0,0 +1,17 @@
+
+FROM ubuntu:18.04
+MAINTAINER Laurent Modolo
+
+ENV HTSEQ_VERSION=0.8.0
+ENV PACKAGES build-essential=12.4* \
+             python3-pip=9.0.1* \
+             python3-setuptools=39.0.1* \
+             python3-dev=3.6.5* \
+             python3-wheel=0.30.0*
+
+RUN apt-get update && \
+    apt-get install -y --no-install-recommends ${PACKAGES} && \
+    apt-get clean
+
+RUN pip3 install numpy==1.14.3
+RUN pip3 install HTSeq==${HTSEQ_VERSION}
diff --git a/src/nf_modules/HTSeq/0.8.0/docker_init.sh b/src/nf_modules/HTSeq/0.8.0/docker_init.sh
new file mode 100755
index 0000000000000000000000000000000000000000..1c135c665b81da23c4dbeabd3b5fb7554c1d47b3
--- /dev/null
+++ b/src/nf_modules/HTSeq/0.8.0/docker_init.sh
@@ -0,0 +1,2 @@
+#!/bin/sh
+docker build src/nf_modules/HTSeq/0.8.0 -t 'htseq:0.8.0'