File size: 2,456 Bytes
21cac4a
aa67d46
1bf5ab1
21cac4a
aa67d46
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
681c7c0
aa67d46
 
 
 
6715b33
 
 
 
 
 
bff2f45
6715b33
bff2f45
6715b33
bff2f45
aa67d46
 
 
 
bff2f45
aa67d46
bff2f45
aa67d46
bff2f45
aa67d46
bff2f45
 
21cac4a
 
cee5b0d
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60

# Use the official Python 3.9 image
FROM python:3.9
 
# Set the working directory to /code
WORKDIR /code
 
# Copy the current directory contents into the container at /code
COPY ./requirements.txt /code/requirements.txt
 
# Install requirements.txt 
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
 
# 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 the current directory contents into the container at $HOME/app setting the owner to the user
# COPY --chown=user . $HOME/app
 
# Start the FastAPI app on port 7860, the default port expected by Spaces
# CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]
 
 
 
 
# WORKDIR /code
 
 
# RUN pip install --no-cache-dir         gradio==3.27.0
# # Install requirements.txt 
# RUN pip install --no-cache-dir pip==22.3.1 &&     pip install --no-cache-dir         datasets         "huggingface-hub>=0.12.1" "protobuf<4" "click<8.1"

# RUN sed -i 's http://deb.debian.org http://cdn-aws.deb.debian.org g' /etc/apt/sources.list && sed -i 's http://archive.ubuntu.com http://us-east-1.ec2.archive.ubuntu.com g' /etc/apt/sources.list && sed -i '/security/d' /etc/apt/sources.list && apt-get update && apt-get install -y 	git 	git-lfs 	ffmpeg 	libsm6 	libxext6 	cmake 	libgl1-mesa-glx 	&& rm -rf /var/lib/apt/lists/* 	&& git lfs install

# RUN useradd -m -u 1000 user

# WORKDIR /home/user/app
# COPY ./requirements.txt /home/user/app/requirements.txt
# RUN pip install --no-cache-dir --upgrade -r /home/user/app/requirements.txt
# # RUN --mount=target=requirements.txt,source=requirements.txt 	pip install --no-cache-dir -r requirements.txt

# # RUN --mount=target=/root/packages.txt,source=packages.txt 	sed -i 's http://deb.debian.org http://cdn-aws.deb.debian.org g' /etc/apt/sources.list && sed -i 's http://archive.ubuntu.com http://us-east-1.ec2.archive.ubuntu.com g' /etc/apt/sources.list && sed -i '/security/d' /etc/apt/sources.list && apt-get update &&     xargs -r -a /root/packages.txt apt-get install -y     && rm -rf /var/lib/apt/lists/*

# COPY --link --chown=1000 --from=lfs /app /home/user/app

# COPY --link --chown=1000 ./ /home/user/app


 
# Set up a new user named "user" with user ID 1000