FROM node:18-alpine3.16

WORKDIR /ui

COPY package.json .

RUN npm install

EXPOSE 5173
