Pendrokar commited on
Commit
c01930e
β€’
1 Parent(s): 6f1fdf6

dockerfile: mimic gradio sdk dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +20 -9
Dockerfile CHANGED
@@ -1,18 +1,29 @@
1
  # you will also find guides on how best to write your Dockerfile
2
 
3
- FROM python:3.10
4
 
5
- RUN apt-get update
6
- RUN apt-get upgrade
7
 
8
- RUN apt-get -y install build-essential python3-dev
9
 
10
- WORKDIR /code
11
 
12
- COPY ./requirements.txt /code/requirements.txt
13
 
14
- RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
15
 
16
- COPY . .
17
 
18
- CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "7860"]
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  # you will also find guides on how best to write your Dockerfile
2
 
3
+ FROM docker.io/huggingface/downloader:0.17.3@sha256:b5bc7fb168c85737634c00c4099b19e251eb2e55b3523b4e389d98876b35f109
4
 
5
+ FROM docker.io/library/python:3.10@sha256:bd4097b62c6752da37c3f1ca2e330b5e76d8deb4848cf1795a2473bf7910a91e
 
6
 
7
+ RUN --mount=target=pre-requirements.txt,source=pre-requirements.txt pip install --no-cache-dir -r pre-requirements.txt
8
 
9
+ RUN pip install --no-cache-dir gradio[oauth]==4.16.0 "uvicorn>=0.14.0" spaces==0.22.0
10
 
11
+ RUN --mount=target=requirements.txt,source=requirements.txt pip install --no-cache-dir -r requirements.txt
12
 
13
+ WORKDIR /home/user/app
14
 
15
+ 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"
16
 
17
+ RUN useradd -m -u 1000 user
18
+
19
+ RUN --mount=target=/root/packages.txt,source=packages.txt apt-get update && xargs -r -a /root/packages.txt apt-get install -y && rm -rf /var/lib/apt/lists/*
20
+
21
+ COPY --link --chown=1000 --from=lfs /app /home/user/app
22
+
23
+ RUN 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
24
+
25
+ RUN pip freeze > /tmp/freeze.txt
26
+
27
+ COPY --link --chown=1000 ./ /home/user/app
28
+
29
+ COPY --from=pipfreeze --link --chown=1000 /tmp/freeze.txt .