gstdl commited on
Commit
d6c4d9e
·
1 Parent(s): d59a577

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +8 -1
Dockerfile CHANGED
@@ -25,7 +25,14 @@ WORKDIR /app
25
  # Install python depencies
26
  RUN pip3 install --upgrade pip && pip3 install --no-cache-dir -q -r requirements.txt
27
 
28
- # Expose is port
 
 
 
 
 
 
 
29
  EXPOSE 5000
30
 
31
  # # Run the image as a non-root user
 
25
  # Install python depencies
26
  RUN pip3 install --upgrade pip && pip3 install --no-cache-dir -q -r requirements.txt
27
 
28
+ # Pull data
29
+ WORKDIR /app/dataset
30
+ RUN python3 pull_data.py
31
+
32
+ # Move working directory
33
+ WORKDIR /app
34
+
35
+ # Expose port 5000
36
  EXPOSE 5000
37
 
38
  # # Run the image as a non-root user