yyh1112 commited on
Commit
fb6ca00
·
verified ·
1 Parent(s): 4815c92

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +6 -1
Dockerfile CHANGED
@@ -12,7 +12,12 @@ WORKDIR /home/user/app
12
  COPY requirements.txt .
13
  RUN pip install --no-cache-dir -r requirements.txt
14
 
15
- COPY --chown=user . .
 
 
 
 
 
16
 
17
  USER user
18
 
 
12
  COPY requirements.txt .
13
  RUN pip install --no-cache-dir -r requirements.txt
14
 
15
+ COPY --chown=user:user . .
16
+
17
+ RUN mkdir -p uploads outputs saved_outputs data \
18
+ uploads/keyword_summary saved_outputs/keyword_summary \
19
+ uploads/aging_stock_summary saved_outputs/aging_stock_summary \
20
+ && chown -R user:user /home/user/app
21
 
22
  USER user
23