Files
ota-admin-portal/Dockerfile.dev
2021-05-04 16:19:05 -07:00

12 lines
259 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 .env /usr/share/nginx/html/.env
COPY nginx.conf /etc/nginx/conf.d/default.conf