Anuj-Panthri commited on
Commit
7114b96
·
1 Parent(s): d720e55

updated readme.md

Browse files
Files changed (2) hide show
  1. Dockerfile +3 -4
  2. README.md +6 -1
Dockerfile CHANGED
@@ -13,15 +13,14 @@ RUN npm run build
13
  # Install Node Server
14
  FROM node:20-bullseye-slim
15
 
 
 
16
  WORKDIR /server
17
 
18
  # Copy server project
19
  COPY ./server /server
20
  COPY --from=client-builder /client/build /client/build
21
 
22
- # Install node_modules and build project
23
  RUN npm install
24
-
25
-
26
- EXPOSE 3000
27
  CMD npm run server
 
13
  # Install Node Server
14
  FROM node:20-bullseye-slim
15
 
16
+ EXPOSE 3000
17
+
18
  WORKDIR /server
19
 
20
  # Copy server project
21
  COPY ./server /server
22
  COPY --from=client-builder /client/build /client/build
23
 
24
+ # Install node_modules and run project
25
  RUN npm install
 
 
 
26
  CMD npm run server
README.md CHANGED
@@ -8,4 +8,9 @@ pinned: false
8
  app_port: 3000
9
  ---
10
 
11
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
 
 
 
 
 
8
  app_port: 3000
9
  ---
10
 
11
+
12
+ # ChatApp
13
+
14
+ delployed url https://anuj-panthri-chatapp.hf.space/
15
+
16
+ made using react and node js(`express`, `socket.io` and `lucia`)