docker-react/Dockerfile

9 lines
170 B
Docker
Raw Normal View History

2019-11-12 00:57:20 +00:00
FROM node:alpine as builder
WORKDIR '/app'
COPY package.json .
RUN npm install
COPY . .
RUN npm run build
FROM nginx
COPY --from=builder /app/build /usr/share/nginx/html