mbarnig commited on
Commit
7a5937e
1 Parent(s): 7ea4057

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +5 -3
Dockerfile CHANGED
@@ -4,7 +4,10 @@ FROM node:22.6-bullseye
4
  WORKDIR $HOME/app
5
 
6
  # Clone HeyGen Github repository in app folder
7
- RUN git clone https://github.com/mbarnig/InteractiveAvatarNextJSDemo.git
 
 
 
8
 
9
  # change folder
10
  WORKDIR $HOME/app/InteractiveAvatarNextJSDemo
@@ -25,5 +28,4 @@ EXPOSE 7860
25
 
26
  # Command to start the application
27
  CMD ["npm", "run", "start"]
28
- # CMD ["--host", "0.0.0.0", "--port", "7860"]
29
-
 
4
  WORKDIR $HOME/app
5
 
6
  # Clone HeyGen Github repository in app folder
7
+ RUN git clone https://github.com/HeyGen-Official/InteractiveAvatarNextJSDemo.git
8
+
9
+ COPY .env $HOME/app/InteractiveAvatarNextJSDemo/.env
10
+ COPY package.json $HOME/app/InteractiveAvatarNextJSDemo/package.json
11
 
12
  # change folder
13
  WORKDIR $HOME/app/InteractiveAvatarNextJSDemo
 
28
 
29
  # Command to start the application
30
  CMD ["npm", "run", "start"]
31
+ # CMD ["--host", "0.0.0.0", "--port", "7860"]