18 lines
422 B
Docker
18 lines
422 B
Docker
FROM node:14-bullseye AS build
|
|
WORKDIR /app
|
|
ENV PATH /app/node_modules/.bin:$PATH
|
|
|
|
COPY package.json yarn.lock ./
|
|
RUN yarn install --silent
|
|
|
|
COPY tsconfig.json ./
|
|
COPY public ./public
|
|
COPY src ./src
|
|
COPY .git ./.git
|
|
|
|
RUN export REACT_APP_VERSION=$(git describe --always) && \
|
|
export REACT_APP_DATE=$(date +"%Y-%m-%d %H:%M:%S") && \
|
|
yarn build
|
|
|
|
FROM nginx AS prod
|
|
COPY --from=build /app/build /usr/share/nginx/html
|