Spaces:
Running
Running
Update Dockerfile
Browse files- Dockerfile +23 -23
Dockerfile
CHANGED
@@ -3,29 +3,29 @@ FROM python:3.10.9
|
|
3 |
|
4 |
# Install system dependencies
|
5 |
# These are required for various Python packages and functionalities
|
6 |
-
RUN apt-get update && apt-get install -y \
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
|
30 |
# Set the working directory in the container
|
31 |
WORKDIR /app
|
|
|
3 |
|
4 |
# Install system dependencies
|
5 |
# These are required for various Python packages and functionalities
|
6 |
+
# RUN apt-get update && apt-get install -y \
|
7 |
+
# libwoff1 \
|
8 |
+
# libopus0 \
|
9 |
+
# libwebp6 \
|
10 |
+
# libwebpdemux2 \
|
11 |
+
# libenchant1c2a \
|
12 |
+
# libgudev-1.0-0 \
|
13 |
+
# libsecret-1-0 \
|
14 |
+
# libhyphen0 \
|
15 |
+
# libgdk-pixbuf2.0-0 \
|
16 |
+
# libegl1 \
|
17 |
+
# libnotify4 \
|
18 |
+
# libxslt1.1 \
|
19 |
+
# libevent-2.1-7 \
|
20 |
+
# libgles2 \
|
21 |
+
# libvpx6 \
|
22 |
+
# libxcomposite1 \
|
23 |
+
# libatk1.0-0 \
|
24 |
+
# libatk-bridge2.0-0 \
|
25 |
+
# libepoxy0 \
|
26 |
+
# libgtk-3-0 \
|
27 |
+
# libharfbuzz-icu0 \
|
28 |
+
# && rm -rf /var/lib/apt/lists/*
|
29 |
|
30 |
# Set the working directory in the container
|
31 |
WORKDIR /app
|