aboutsummaryrefslogtreecommitdiffstats
path: root/Dockerfile
blob: 929e6c0b80a4c6c24964c89ca7b3340b77ff4377 (plain)
1
2
3
4
5
6
7
8
9
10
11
FROM node AS build-env
WORKDIR /build
COPY package.json /build/
RUN npm i
COPY . /build/
RUN npm run build

FROM nginx:alpine
COPY --from=build-env /build/dist /usr/share/nginx/html
COPY --from=build-env /build/examples /usr/share/nginx/html/examples
RUN chmod 555 -R /usr/share/nginx/html