FROM node:14.17.0-alpine3.13 as builder

ARG REACT_APP_AUTH0_DOMAIN=sme-dna.auth0.com
ARG REACT_APP_AUTH0_CLIENT_ID=CAmEb2ywkISejwPIekEyuEiqD2U4a6IS
ARG REACT_APP_AUTH0_AUDIENCE=https://dev-api.sma.stream
ARG REACT_APP_RTI_API_URL=https://dev-api.insights.stream
ARG REACT_APP_AMPLITUDE_API_KEY=94e2a81a95b37790d6d6fc11e9444738

WORKDIR /usr/src

COPY ./ ./

RUN yarn && yarn build

FROM nginx:1.21.3-alpine

COPY --from=builder /usr/src/build /usr/share/nginx/html
COPY infra/docker/nginx/default.conf /etc/nginx/conf.d/
