From 289864af1a995ce04834bf8a220cc238e1954d19 Mon Sep 17 00:00:00 2001 From: sct Date: Sun, 27 Dec 2020 10:33:44 +0000 Subject: [PATCH] fix(build): fixes build to include commit tag for app build step --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index 48bd94d4..a554e002 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,8 @@ FROM node:12.18-alpine AS BUILD_IMAGE +ARG COMMIT_TAG +ENV COMMIT_TAG=${COMMIT_TAG} + COPY . /app WORKDIR /app