neurosecure/Dockerfile

13 lines
160 B
Docker

FROM node:14 as build
WORKDIR /app
COPY . ./
RUN yarn
RUN yarn build
FROM nginx:alpine as serve
COPY --from=build /app/dist /usr/share/nginx/html
EXPOSE 80