Spaces:
Sleeping
Sleeping
rm unzip
Browse files- Dockerfile +2 -3
Dockerfile
CHANGED
@@ -1,9 +1,8 @@
|
|
1 |
FROM oneflowinc/onediff:cu118
|
2 |
|
3 |
ARG LIVE_XL_TAR=live_xl_rel_ubuntu-22.04_202403111616.tar
|
4 |
-
RUN wget https://github.com/jackalcooper/live_xl/releases/download/latest/${LIVE_XL_TAR} && \
|
5 |
-
tar xvf ${LIVE_XL_TAR}
|
6 |
-
unzip ${LIVE_XL_TAR}.zip
|
7 |
ENV PORT=7860 SECRET_KEY_BASE="Z/VeN8hw0cQruiL3YyWG52IPq+hnG9Ucj1RuW0263Iddmd8f+j7i/b7NCs1fiLCx"
|
8 |
|
9 |
CMD ["live_xl/bin/server"]
|
|
|
1 |
FROM oneflowinc/onediff:cu118
|
2 |
|
3 |
ARG LIVE_XL_TAR=live_xl_rel_ubuntu-22.04_202403111616.tar
|
4 |
+
RUN wget --quiet https://github.com/jackalcooper/live_xl/releases/download/latest/${LIVE_XL_TAR} && \
|
5 |
+
tar xvf ${LIVE_XL_TAR}
|
|
|
6 |
ENV PORT=7860 SECRET_KEY_BASE="Z/VeN8hw0cQruiL3YyWG52IPq+hnG9Ucj1RuW0263Iddmd8f+j7i/b7NCs1fiLCx"
|
7 |
|
8 |
CMD ["live_xl/bin/server"]
|