Spaces:
Running
Running
Update Dockerfile
Browse files- Dockerfile +4 -1
Dockerfile
CHANGED
@@ -46,7 +46,10 @@ RUN pip3 install -r requirements.txt
|
|
46 |
|
47 |
COPY version.json /.cache/akn/version.json
|
48 |
|
49 |
-
RUN
|
|
|
|
|
|
|
50 |
|
51 |
RUN wget https://johnvansickle.com/ffmpeg/builds/ffmpeg-git-amd64-static.tar.xz
|
52 |
RUN wget https://johnvansickle.com/ffmpeg/builds/ffmpeg-git-amd64-static.tar.xz.md5
|
|
|
46 |
|
47 |
COPY version.json /.cache/akn/version.json
|
48 |
|
49 |
+
RUN mkdir -p /.cache/akn \
|
50 |
+
&& chown -R 1000:0 . \
|
51 |
+
&& chmod -R 777 /.cache/akn \
|
52 |
+
&& chmod -R 777 /.cache
|
53 |
|
54 |
RUN wget https://johnvansickle.com/ffmpeg/builds/ffmpeg-git-amd64-static.tar.xz
|
55 |
RUN wget https://johnvansickle.com/ffmpeg/builds/ffmpeg-git-amd64-static.tar.xz.md5
|