mirror of
https://github.com/Rushilwiz/neurosecure.git
synced 2025-04-06 13:20:18 -04:00
13 lines
160 B
Docker
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 |