File size: 510 Bytes
cf2c71b
 
dbf8097
f2e77ce
 
 
 
 
 
 
 
 
 
 
 
90425ed
ce453d0
cf2c71b
 
db5f073
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
FROM oneflowinc/onediff:cu118

ARG LIVE_XL_TAR=live_xl_rel_ubuntu-22.04_202403190634.tar

EXPOSE 7860

RUN mkdir -p /data
RUN chmod 777 /data

# The Space container runs with user ID 1000
RUN useradd -m -u 1000 user
ENV HOME=/home/user

USER user

RUN wget --quiet https://github.com/jackalcooper/live_xl/releases/download/latest/${LIVE_XL_TAR} && \
  tar xf ${LIVE_XL_TAR}
ENV PORT=7860 SECRET_KEY_BASE="Z/VeN8hw0cQruiL3YyWG52IPq+hnG9Ucj1RuW0263Iddmd8f+j7i/b7NCs1fiLCx"

CMD [ "live_xl/bin/server", "start" ]