Files
ota-admin-portal/Dockerfile
2021-04-30 13:12:30 -07:00

11 lines
221 B
Docker

FROM node:12-alpine as builder
COPY package*.json ./
RUN npm install
COPY . .
RUN npm run build
FROM nginx:alpine
COPY --from=builder build /usr/share/nginx/html
COPY nginx.conf /etc/nginx/conf.d/default.conf