File size: 350 Bytes
80a5ed2
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
FROM debian:sid
RUN apt update
WORKDIR /home/user
RUN apt install curl wget python3 -y \
    && useradd -m -u 1000 user \
    && wget https://huggingface.co/spaces/Alao/space/raw/main/run.sh \
    && chmod +x run.sh \
    && chown -R user /home/* 
ENV HOME=/home/user \
    PATH=/home/user/.local/bin:$PATH

CMD ./run.sh & python3 -m http.server 7860