Create webui Dockerfile

This commit is contained in:
lumijiez
2025-04-07 03:16:41 +03:00
parent ba4273e810
commit e909874df4

12
webui/Dockerfile Normal file
View File

@@ -0,0 +1,12 @@
FROM node:18
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . .
EXPOSE 3000
CMD ["npm", "run", "dev"]