File size: 238 Bytes
67cba20
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
# Build step #1: build the React front end
FROM node:16-alpine as build-step
WORKDIR /app
ENV PATH /app/node_modules/.bin:$PATH
COPY package.json yarn.lock ./
COPY ./src ./src
COPY ./public ./public
RUN yarn install
RUN yarn build