File size: 797 Bytes
29eecb6
 
f397951
29eecb6
7ffc395
 
 
 
 
 
 
 
 
 
 
 
 
 
29eecb6
 
7ffc395
 
29eecb6
 
7ffc395
29eecb6
f397951
 
 
 
 
 
 
 
1ec7d38
f397951
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
FROM pytorch/pytorch:latest

RUN apt update && apt install -y && apt install -y ffmpeg&& rm -rf /var/lib/apt/lists/*

# Set up a new user named "user" with user ID 1000
RUN useradd -m -u 1000 user

# Switch to the "user" user
USER user

# Set home to the user's home directory
ENV HOME=/home/user \
	PATH=/home/user/.local/bin:$PATH

# Set the working directory to the user's home directory
WORKDIR $HOME/app

COPY --chown=user requirements.txt .
RUN python3 -m pip install -r requirements.txt

COPY --chown=user setup.py VERSION .
COPY --chown=user src ./src
RUN python3 -m pip install .

COPY --chown=user "demo.py" .

# EXPOSE 7860 8080

# COPY --chown=user "start.sh" .
# RUN chmod +x "start.sh"

# CMD ["./start.sh"]

EXPOSE 7860
ENV GRADIO_SERVER_NAME="0.0.0.0"
CMD ["python3", "./demo.py"]