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

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