FROM node:22-alpine

WORKDIR /ui

COPY package.json .

RUN npm install

EXPOSE 5173
