Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +7 -0
Dockerfile
CHANGED
@@ -15,6 +15,13 @@ RUN apt update && apt upgrade -y
|
|
15 |
# Install required packages
|
16 |
RUN apt install -y curl
|
17 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
18 |
# Add NodeSource APT repository for Node 18.x
|
19 |
RUN curl -fsSL https://deb.nodesource.com/setup_18.x | bash -
|
20 |
|
|
|
15 |
# Install required packages
|
16 |
RUN apt install -y curl
|
17 |
|
18 |
+
# install py
|
19 |
+
RUN apt-get install -y curl neofetch ffmpeg \
|
20 |
+
libnss3 libatk1.0-0 libatk-bridge2.0-0 libcups2 libgbm1 libasound2 libpangocairo-1.0-0 libxss1 libgtk-3-0 imagemagick \
|
21 |
+
python3 python3-pip python3-venv build-essential libvips libvips-dev libjpeg-dev libpng-dev
|
22 |
+
|
23 |
+
RUN pip install gradio_client
|
24 |
+
|
25 |
# Add NodeSource APT repository for Node 18.x
|
26 |
RUN curl -fsSL https://deb.nodesource.com/setup_18.x | bash -
|
27 |
|