ricebug commited on
Commit
1c03383
·
verified ·
1 Parent(s): 4bfb5fa

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +13 -2
Dockerfile CHANGED
@@ -1,2 +1,13 @@
1
- FROM ghcr.io/koala73/worldmonitor:lastest
2
- EXPOSE 7860
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM node:22-alpine
2
+
3
+ WORKDIR /app
4
+
5
+ RUN apk add --no-cache git
6
+
7
+ RUN git clone https://github.com/koala73/worldmonitor.git .
8
+
9
+ RUN npm install
10
+
11
+ EXPOSE 5173
12
+
13
+ CMD ["npm", "run", "dev", "--", "--host", "0.0.0.0"]