Add initial codebase
This commit is contained in:
parent
5fb2b8a791
commit
2bd81f859e
24 changed files with 2603 additions and 0 deletions
7
frontend/Dockerfile
Normal file
7
frontend/Dockerfile
Normal file
|
@ -0,0 +1,7 @@
|
|||
FROM node:24-alpine
|
||||
WORKDIR /app
|
||||
COPY package*.json ./
|
||||
RUN npm install
|
||||
COPY . .
|
||||
EXPOSE 5173
|
||||
CMD ["npm", "run", "dev", "--", "--host"]
|
Loading…
Add table
Add a link
Reference in a new issue