aboutsummaryrefslogtreecommitdiff
path: root/.github/docker/Dockerfile-frontend
blob: 5cd82b0412d4d84a57b8244cb63e4cffe3ef7378 (plain) (blame)
1
2
3
4
5
6
7
FROM node:16

WORKDIR /caronte-frontend

COPY ./frontend ./

RUN yarn install && yarn build