From 0ae00d96dc40d991d50274ab6a72988602879e9d Mon Sep 17 00:00:00 2001 From: Gabriel Augendre Date: Fri, 12 Nov 2021 17:41:35 +0100 Subject: [PATCH] Fix build --- Dockerfile | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/Dockerfile b/Dockerfile index c7c4d49..1640e4d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,18 +9,10 @@ COPY tsconfig.json ./ COPY public ./public COPY src ./src +RUN export REACT_APP_VERSION=$(git describe --always) +RUN export REACT_APP_DATE=$(date +"%Y-%m-%d %H:%M:%S") ARG REACT_APP_TCL_AUTH RUN yarn build -FROM alpine/git AS git -WORKDIR /app -COPY .git ./ -RUN git describe --always > /version -RUN date +"%Y-%m-%d %H:%M:%S" > /date - FROM nginx AS prod -COPY --from=git /version /app/.version -COPY --from=git /date /app/.date -RUN export REACT_APP_VERSION=$(cat /app/.version) -RUN export REACT_APP_DATE=$(cat /app/.date) COPY --from=build /app/build /usr/share/nginx/html