aboutsummaryrefslogtreecommitdiffstats
path: root/Dockerfile
blob: 181bc7a8315e3acbdb4893b349fae7a7764e6474 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
FROM node:18-alpine as builder

WORKDIR /tmp
COPY . .

RUN npx prettier --check ./src
RUN yarn && yarn build 

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