Junivert commited on
Commit
91a1885
·
verified ·
1 Parent(s): 15ca554

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -1
Dockerfile CHANGED
@@ -14,8 +14,10 @@ WORKDIR /app
14
  # clone repo
15
  RUN git clone https://github.com/gilangf3000/rAI.git .
16
 
 
 
17
  # install dependencies
18
- RUN pip install --no-cache-dir -r backend/requirements.txt
19
 
20
  EXPOSE 51379
21
 
 
14
  # clone repo
15
  RUN git clone https://github.com/gilangf3000/rAI.git .
16
 
17
+ WORKDIR /app/backend
18
+
19
  # install dependencies
20
+ RUN pip install --no-cache-dir -r requirements.txt
21
 
22
  EXPOSE 51379
23