16 lines
335 B
Docker
16 lines
335 B
Docker
|
FROM node:latest as builder
|
||
|
|
||
|
WORKDIR /app
|
||
|
ENV PATH /app/node_modules/.bin:$PATH
|
||
|
COPY package.json ./
|
||
|
COPY package-lock.json ./
|
||
|
RUN npm ci --silent
|
||
|
RUN npm install react-scripts -g --silent
|
||
|
COPY . ./
|
||
|
RUN npm run build
|
||
|
|
||
|
FROM nginx:latest
|
||
|
COPY --from=builder /app/build /usr/share/nginx/html
|
||
|
EXPOSE 80
|
||
|
CMD ["nginx", "-g", "daemon off;"]
|