randydev commited on
Commit
5f88944
·
verified ·
1 Parent(s): 4da86e8

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +16 -36
Dockerfile CHANGED
@@ -1,8 +1,5 @@
1
  FROM python:3.11
2
 
3
- WORKDIR /app
4
- WORKDIR /.cache
5
-
6
  RUN apt -qq update && \
7
  apt -qq install -y --no-install-recommends \
8
  ffmpeg \
@@ -11,22 +8,6 @@ RUN apt -qq update && \
11
  gnupg2 \
12
  unzip \
13
  wget \
14
- xvfb \
15
- libxi6 \
16
- libgconf-2-4 \
17
- libappindicator3-1 \
18
- libxrender1 \
19
- libxtst6 \
20
- libnss3 \
21
- libatk1.0-0 \
22
- libxss1 \
23
- fonts-liberation \
24
- libasound2 \
25
- libgbm-dev \
26
- libu2f-udev \
27
- libvulkan1 \
28
- libgl1-mesa-dri \
29
- xdg-utils \
30
  python3-dev \
31
  python3-pip \
32
  libavformat-dev \
@@ -40,24 +21,23 @@ RUN apt -qq update && \
40
  apt-get clean && \
41
  rm -rf /var/lib/apt/lists/
42
 
43
- COPY . .
 
 
 
 
 
44
  COPY requirements.txt .
45
- RUN pip3 install --upgrade pip setuptools
46
- RUN pip3 install -r requirements.txt
47
-
48
- RUN chown -R 1000:0 .
49
- RUN chmod 777 .
50
- RUN chown -R 1000:0 /app
51
- RUN chmod 777 /app
52
- RUN chown -R 1000:0 /.cache
53
- RUN chmod 777 /.cache
54
-
55
- RUN wget https://johnvansickle.com/ffmpeg/builds/ffmpeg-git-amd64-static.tar.xz
56
- RUN wget https://johnvansickle.com/ffmpeg/builds/ffmpeg-git-amd64-static.tar.xz.md5
57
- RUN md5sum -c ffmpeg-git-amd64-static.tar.xz.md5
58
- RUN tar xvf ffmpeg-git-amd64-static.tar.xz
59
- RUN mv ffmpeg-git*/ffmpeg ffmpeg-git*/ffprobe /usr/local/bin/
60
 
61
  EXPOSE 7860
62
 
63
- CMD ["bash", "-c", "python3 server.py & python3 -m akn"]
 
 
 
1
  FROM python:3.11
2
 
 
 
 
3
  RUN apt -qq update && \
4
  apt -qq install -y --no-install-recommends \
5
  ffmpeg \
 
8
  gnupg2 \
9
  unzip \
10
  wget \
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
11
  python3-dev \
12
  python3-pip \
13
  libavformat-dev \
 
21
  apt-get clean && \
22
  rm -rf /var/lib/apt/lists/
23
 
24
+ WORKDIR /usr/src/app
25
+
26
+ ENV UV_CACHE_DIR=/usr/src/app/.cache/uv
27
+
28
+ RUN pip install --no-cache-dir uv
29
+
30
  COPY requirements.txt .
31
+ RUN uv pip install --system -r requirements.txt
32
+
33
+ COPY . .
34
+
35
+ RUN chown -R 1000:0 . \
36
+ && chmod -R 777 /usr/src/app \
37
+ && chmod -R 777 /usr
 
 
 
 
 
 
 
 
38
 
39
  EXPOSE 7860
40
 
41
+ COPY start.sh /usr/src/app/start.sh
42
+ RUN chmod +x /usr/src/app/start.sh
43
+ CMD ["/usr/src/app/start.sh"]