Update Dockerfile
Browse files- 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"]
|