diff --git a/client/Dockerfile b/client/Dockerfile new file mode 100644 index 00000000..82096c42 --- /dev/null +++ b/client/Dockerfile @@ -0,0 +1,12 @@ +FROM node:18-bullseye-slim as client +WORKDIR /src + +# +# install dependencies +COPY package*.json ./ +RUN npm install + +# +# build client +COPY . . +RUN npm run build