File size: 810 Bytes
b0d8cff
 
b584cbf
b0d8cff
b584cbf
 
b0d8cff
b584cbf
e4e65d8
b584cbf
e4e65d8
b0d8cff
e4e65d8
b0d8cff
 
e4e65d8
 
b0d8cff
 
e4e65d8
 
 
 
 
b584cbf
e4e65d8
3264552
e4e65d8
 
 
 
762c56a
e4e65d8
762c56a
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
FROM python:3.10

# 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 and update PATH
ENV HOME=/home/user \
    PATH=/home/user/.local/bin:$PATH

# Set the working directory to /app
WORKDIR /app

# Copy requirements.txt and install dependencies
COPY --chown=user: ./requirements.txt ./requirements.txt
RUN pip install --no-cache-dir --upgrade -r requirements.txt

# Copy the rest of the application code
COPY --chown=user: . .

# Expose necessary ports
EXPOSE 7860 80

# Set environment variables
ENV PYTHONUNBUFFERED=1 \
    GRADIO_ALLOW_FLAGGING=never \
    GRADIO_NUM_PORTS=1 \
    GRADIO_SERVER_NAME=0.0.0.0 \
    SYSTEM=spaces

# Specify the command to run the application
CMD ["python", "app.py"]