aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile
blob: a1d584a6ed0ea1322b503fcd515ea87824c4c00d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
FROM node:12.17 as build-deps
RUN npm i -g pnpm
WORKDIR /usr/src/app
COPY package.json ./
RUN pnpm i
COPY . ./
RUN pnpm build

FROM cr.galenguyer.com/nginx/spa:latest
COPY --from=build-deps /usr/src/app/build /usr/share/nginx/html/