File size: 1,395 Bytes
2ab2d9e
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
FROM docker.io/library/python:3.10.13@sha256:d5b1fbbc00fd3b55620a9314222498bebf09c4bf606425bf464709ed6a79f202

RUN apt-get update && apt-get install -y 	git 	git-lfs 	ffmpeg 	libsm6 	libxext6 	cmake 	rsync 	libgl1-mesa-glx 	&& rm -rf /var/lib/apt/lists/* 	&& git lfs install

RUN pip install --no-cache-dir pip==22.3.1 && 	pip install --no-cache-dir 	datasets 	"huggingface-hub>=0.19" "hf-transfer>=0.1.4" "protobuf<4" "click<8.1" "pydantic~=1.0" torch==2.3.1

RUN apt-get update && apt-get install -y fakeroot &&     mv /usr/bin/apt-get /usr/bin/.apt-get &&     echo '#!/usr/bin/env sh\nfakeroot /usr/bin/.apt-get $@' > /usr/bin/apt-get &&     chmod +x /usr/bin/apt-get && 	rm -rf /var/lib/apt/lists/* && 	useradd -m -u 1000 user

COPY --chown=1000:1000 --from=root / /

RUN --mount=target=/tmp/requirements.txt,source=requirements.txt     pip install --no-cache-dir -r /tmp/requirements.txt

RUN pip freeze > /tmp/freeze.txt

WORKDIR /home/user/app

RUN pip install --no-cache-dir 	gradio[oauth]==4.25.0 	"uvicorn>=0.14.0" 	spaces==0.29.3

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

COPY --from=pipfreeze --link --chown=1000 /tmp/freeze.txt /tmp/freeze.txt

# ENV PYTHONPATH=${HOME}/app \
#     PYTHONUNBUFFERED=1 \
#     GRADIO_ALLOW_FLAGGING=never \
#     GRADIO_NUM_PORTS=1 \
#     GRADIO_SERVER_NAME=0.0.0.0 \
#     GRADIO_THEME=huggingface \
#     SYSTEM=spaces

CMD ["python", "app.py"]