FROM node:current-alpine3.17 RUN apk update && apk add sudo COPY package*.json ./ RUN npm install WORKDIR /app/ui COPY . . CMD ["npm", "run", "dev"]