Dockerfile for SceneSense UI

This commit is contained in:
2023-09-25 15:10:15 +03:30
parent 2aaf6af853
commit a0499b0f16

7
webui-client/Dockerfile Normal file
View File

@@ -0,0 +1,7 @@
FROM node:20-slim
WORKDIR /app
COPY src/package.json /app/
RUN npm install
COPY src/main.js src/views/ /app/
EXPOSE 3000
CMD ["node", "main.js"]