summaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile
index e581d4e..513c7fd 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -39,9 +39,10 @@ COPY ./utils/*.go ./utils/
# COMMIT value to change.
ARG VERSION="0.0.0"
ARG COMMIT="HEAD"
+ARG BUILD=""
# Build server binary
-RUN make server VERSION=$VERSION COMMIT=$COMMIT
+RUN make server VERSION=$VERSION COMMIT=$COMMIT BUILD=$BUILD
# Runtime
FROM alpine:latest