add FE source

This commit is contained in:
2024-05-13 03:16:06 +00:00
parent a7e31b8ca9
commit 4a4d8e762c
44 changed files with 3727 additions and 0 deletions

14
fuware-fe/Dockerfile Normal file
View File

@ -0,0 +1,14 @@
FROM node:18.19.0-alpine3.19
WORKDIR /app/client
COPY package*.json .
RUN npm i
COPY . .
ENV NODE_ENV=production
ENV VITE_LOGIN_KEY=7fo24CMyIc
EXPOSE 5000
CMD ["npm", "run", "dev"]