mirror of
https://github.com/Rushilwiz/neurosecure.git
synced 2025-04-03 20:10:16 -04:00
17 lines
307 B
Docker
17 lines
307 B
Docker
FROM node:14 as build
|
|
|
|
WORKDIR /app
|
|
|
|
COPY . ./
|
|
|
|
RUN yarn
|
|
RUN yarn parcel build index.html contact.html team.html project.html
|
|
|
|
COPY js/brain.json dist/js/brain.json
|
|
|
|
FROM nginx:latest as serve
|
|
|
|
COPY --from=build /app/dist /usr/share/nginx/html/
|
|
COPY ./default.conf /etc/nginx/conf.d/default.conf
|
|
|
|
EXPOSE 80 |