update FE Dockerfile to read short sha

This commit is contained in:
Felipe Knorr Kuhn 2021-06-25 23:47:19 -07:00
parent ca91afe45b
commit 446bdfebea

View File

@ -1,5 +1,8 @@
FROM node:12-buster-slim AS builder
ARG commitHash
ENV DOCKER_COMMIT_HASH=${commitHash}
WORKDIR /build
COPY . .
RUN apt-get update