Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +1 -45
Dockerfile
CHANGED
@@ -3,53 +3,9 @@ FROM node:latest
|
|
3 |
|
4 |
# Update and install necessary dependencies
|
5 |
RUN apt-get update && \
|
6 |
-
apt-get install -y neofetch ffmpeg curl python3 python3-pip python3-venv build-essential libvips libvips-dev libjpeg-dev libpng-dev && \
|
7 |
rm -rf /var/lib/apt/lists/*
|
8 |
|
9 |
-
# Install Puppeteer dependencies
|
10 |
-
RUN apt-get update && \
|
11 |
-
apt-get install -y \
|
12 |
-
gconf-service \
|
13 |
-
libasound2 \
|
14 |
-
libatk1.0-0 \
|
15 |
-
libcups2 \
|
16 |
-
libdbus-1-3 \
|
17 |
-
libgconf-2-4 \
|
18 |
-
libgtk-3-0 \
|
19 |
-
libnspr4 \
|
20 |
-
libnss3 \
|
21 |
-
libx11-xcb1 \
|
22 |
-
libxcomposite1 \
|
23 |
-
libxcursor1 \
|
24 |
-
libxdamage1 \
|
25 |
-
libxrandr2 \
|
26 |
-
libxss1 \
|
27 |
-
libxtst6 \
|
28 |
-
fonts-ipafont-gothic \
|
29 |
-
fonts-wqy-zenhei \
|
30 |
-
fonts-thai-tlwg \
|
31 |
-
fonts-kacst \
|
32 |
-
ttf-freefont \
|
33 |
-
libappindicator1 \
|
34 |
-
libindicator7 \
|
35 |
-
libpango-1.0-0 \
|
36 |
-
libpangocairo-1.0-0 \
|
37 |
-
libx11-dev \
|
38 |
-
libxcomposite-dev \
|
39 |
-
libxcursor-dev \
|
40 |
-
libxdamage-dev \
|
41 |
-
libxrandr-dev \
|
42 |
-
libxss-dev \
|
43 |
-
libxtst-dev \
|
44 |
-
ca-certificates \
|
45 |
-
fonts-liberation \
|
46 |
-
libappindicator3-1 \
|
47 |
-
libnss3-dev \
|
48 |
-
lsb-release \
|
49 |
-
xdg-utils \
|
50 |
-
wget \
|
51 |
-
&& rm -rf /var/lib/apt/lists/*
|
52 |
-
|
53 |
# Set up the work directory
|
54 |
WORKDIR /app
|
55 |
|
|
|
3 |
|
4 |
# Update and install necessary dependencies
|
5 |
RUN apt-get update && \
|
6 |
+
apt-get install -y neofetch ffmpeg curl python3 python3-pip python3-venv build-essential libvips libvips-dev libjpeg-dev libpng-dev gconf-service libasound2 libatk1.0-0 libcups2 libdbus-1-3 libgconf-2-4 libgtk-3-0 libnspr4 libnss3 libx11-xcb1 libxcomposite1 libxcursor1 libxdamage1 libxrandr2 libxss1 libxtst6 fonts-ipafont-gothic fonts-wqy-zenhei fonts-thai-tlwg fonts-kacst ttf-freefont libappindicator1 libindicator7 libpango-1.0-0 libpangocairo-1.0-0 libx11-dev libxcomposite-dev libxcursor-dev libxdamage-dev libxrandr-dev libxss-dev libxtst-dev ca-certificates fonts-liberation libappindicator3-1 libnss3-dev lsb-release xdg-utils wget && \
|
7 |
rm -rf /var/lib/apt/lists/*
|
8 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
9 |
# Set up the work directory
|
10 |
WORKDIR /app
|
11 |
|