Files
ota-admin-portal/Dockerfile
2021-07-22 10:50:09 -07:00

11 lines
221 B
Docker

FROM node:14-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