should work

This commit is contained in:
whidix
2022-12-31 15:45:04 +01:00
parent 74ac50ede7
commit 930beaa857
21 changed files with 307 additions and 31 deletions

6
Dockerfile Normal file
View File

@@ -0,0 +1,6 @@
FROM node:latest
WORKDIR /app
COPY . .
RUN npm install
EXPOSE 5173
CMD ["npm", "run", "dev"]