Update Dockerfile
Browse files- Dockerfile +2 -0
Dockerfile
CHANGED
@@ -19,6 +19,8 @@ COPY requirements.txt /GANime/requirements.txt
|
|
19 |
RUN pip install -r requirements.txt
|
20 |
COPY . .
|
21 |
RUN pip install -e .
|
|
|
|
|
22 |
RUN chmod 777 /.cache
|
23 |
|
24 |
CMD ["python", "app.py"]
|
|
|
19 |
RUN pip install -r requirements.txt
|
20 |
COPY . .
|
21 |
RUN pip install -e .
|
22 |
+
|
23 |
+
RUN mkdir /.cache
|
24 |
RUN chmod 777 /.cache
|
25 |
|
26 |
CMD ["python", "app.py"]
|