docker-react/Dockerfile
2019-11-12 20:39:07 -08:00

10 lines
No EOL
182 B
Docker

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