Update Dockerfile
Browse files- Dockerfile +4 -0
Dockerfile
CHANGED
@@ -9,6 +9,10 @@ COPY ./requirements.txt /code/requirements.txt
|
|
9 |
|
10 |
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
|
11 |
|
|
|
|
|
|
|
|
|
12 |
COPY . .
|
13 |
|
14 |
CMD ["python", "/code/app.py", "--address", "0.0.0.0", "--port", "7860"]
|
|
|
9 |
|
10 |
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
|
11 |
|
12 |
+
RUN chmod 777 /path/to/flagged
|
13 |
+
|
14 |
+
RUN chmod 777 /code
|
15 |
+
|
16 |
COPY . .
|
17 |
|
18 |
CMD ["python", "/code/app.py", "--address", "0.0.0.0", "--port", "7860"]
|