docker-react/Dockerfile

10 lines
182 B
Docker
Raw Permalink Normal View History

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