geo-smart-map/Dockerfile

11 lines
189 B
Docker
Raw Permalink Normal View History

2022-09-10 07:11:31 +00:00
# Stage 1
FROM node:14.20.0 as node
WORKDIR /app
COPY . .
RUN npm install
RUN npm run build --prod
# Stage 2
FROM nginx:alpine
COPY --from=node /app/dist/geosmartmap /usr/share/nginx/html