mirror of
https://github.com/Rushilwiz/neurosecure.git
synced 2025-04-11 07:40:19 -04:00
feat: dockerized repo
This commit is contained in:
parent
57628bef00
commit
fa087fba9a
13
Dockerfile
Normal file
13
Dockerfile
Normal file
|
@ -0,0 +1,13 @@
|
|||
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
|
Loading…
Reference in New Issue
Block a user