aboutsummaryrefslogtreecommitdiffstats
path: root/Dockerfile
blob: 5a5f92fba6f70f2be5b749c8c5ab3b5249561136 (plain)
1
2
3
4
5
6
7
8
9
10
11
FROM mhart/alpine-node:14 as builder

WORKDIR /tmp
COPY . .

RUN yarn && yarn build

###
# production image
FROM nginx:stable-alpine
COPY --from=builder /tmp/build /usr/share/nginx/html