Fix build

This commit is contained in:
Gabriel Augendre 2021-11-12 17:41:35 +01:00
parent 291438b325
commit 0ae00d96dc

View file

@ -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