plsgivemeachane commited on
Commit
ed116a1
1 Parent(s): cb6e686
Files changed (1) hide show
  1. Dockerfile +3 -1
Dockerfile CHANGED
@@ -4,7 +4,9 @@ WORKDIR /app
4
 
5
  COPY . .
6
 
7
- CMD ["echo", "Hello world"]
 
 
8
 
9
  # COPY ./requirements.txt /code/requirements.txt
10
 
 
4
 
5
  COPY . .
6
 
7
+ RUN npm install
8
+
9
+ CMD ["npm", "run", "start"]
10
 
11
  # COPY ./requirements.txt /code/requirements.txt
12