diff --git a/frontend/DockerfileLegacy b/frontend/DockerfileLegacy new file mode 100644 index 000000000..809aeef21 --- /dev/null +++ b/frontend/DockerfileLegacy @@ -0,0 +1,10 @@ +# Builder image +FROM docker.io/node:18-alpine as builder + +RUN yarn set version stable +WORKDIR /client +COPY package.json /client/ +COPY yarn.lock /client/ +COPY jsconfig.json /client/ +RUN yarn +COPY . /client/