aineid / Dockerfile.client
grosenthal's picture
no public
67cba20
raw
history blame
No virus
238 Bytes
# 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