Initial commit
This commit is contained in:
commit
affe27b3e8
49 changed files with 33325 additions and 0 deletions
8
frontend/svelte/Dockerfile
Normal file
8
frontend/svelte/Dockerfile
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
FROM node:16
|
||||
WORKDIR /usr/src/app
|
||||
COPY package*.json ./
|
||||
RUN npm install
|
||||
COPY . .
|
||||
EXPOSE 5173
|
||||
ENV HOST=0.0.0.0
|
||||
CMD ["npm", "run", "dev", "--", "--host"]
|
||||
Loading…
Add table
Add a link
Reference in a new issue