11 lines
243 B
Docker
11 lines
243 B
Docker
#stage 1
|
|
FROM node:latest as node
|
|
WORKDIR /app
|
|
COPY . .
|
|
RUN npm install
|
|
RUN npm run build --prod
|
|
#stage 2
|
|
FROM nginx:alpine
|
|
COPY nginx.conf /etc/nginx/sites-available/default
|
|
COPY --from=node /app/dist/WebDesktopFrontend /usr/share/nginx/html
|