add client dockerfile.

This commit is contained in:
Miroslav Šedivý 2024-09-08 11:53:06 +02:00
parent 3d7be663ec
commit e16eefce19

12
client/Dockerfile Normal file
View File

@ -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