diff --git a/Dockerfile b/Dockerfile
index 56ddae61b21ef646835cf3f1fd5c214c27ed223d..a8e27e1b25c0397992071323181e62a308acceaa 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,4 +1,5 @@
 FROM buildpack-deps:stretch-scm as build
+ARG VERSION=1.0.5
 ENV DEBIAN_FRONTEND noninteractive
 RUN apt-get update && \
     apt-get install -y \
@@ -6,11 +7,13 @@ RUN apt-get update && \
         clang \
         libpcap-dev \
     && \
-    git clone https://github.com/robertdavidgraham/masscan.git && \
+    git clone https://github.com/robertdavidgraham/masscan.git --branch ${VERSION} && \
     cd masscan && \
     make -j
 
 FROM debian:stretch-slim
+ARG VERSION=1.0.5
+LABEL MASSCAN_VERSION=${VERSION}
 RUN apt-get update && \
     DEBIAN_FRONTEND=noninteractive apt-get install -y libpcap0.8 && \
     rm -rf /tmp/* /var/tmp/* /var/lib/apt/lists/* /var/cache/apt/archives/*