Abhaykoul commited on
Commit
1daa7f2
·
verified ·
1 Parent(s): 1b0712a

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -0
Dockerfile CHANGED
@@ -6,6 +6,9 @@ COPY ./requirements.txt /code/requirements.txt
6
 
7
  RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
8
 
 
 
 
9
  COPY . .
10
 
11
  CMD ["flask", "run", "--host", "0.0.0.0", "--port", "7860"]
 
6
 
7
  RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
8
 
9
+ # Change permissions of the api_keys.json file
10
+ RUN chmod 644 /code/api_keys.json
11
+
12
  COPY . .
13
 
14
  CMD ["flask", "run", "--host", "0.0.0.0", "--port", "7860"]