Files
ota-admin-portal/Dockerfile
Rafi Greenberg 1ddf9fe813 nginx things
2021-02-03 10:21:14 -08: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