HerzaJ commited on
Commit
43de5ee
·
verified ·
1 Parent(s): 5a0e4d9

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +35 -1
Dockerfile CHANGED
@@ -1,8 +1,42 @@
1
  FROM node:20-slim
2
 
3
- # Install hanya dependencies minimal
4
  RUN apt-get update && apt-get install -y \
5
  ca-certificates \
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6
  --no-install-recommends \
7
  && rm -rf /var/lib/apt/lists/*
8
 
 
1
  FROM node:20-slim
2
 
 
3
  RUN apt-get update && apt-get install -y \
4
  ca-certificates \
5
+ fonts-liberation \
6
+ libasound2 \
7
+ libatk-bridge2.0-0 \
8
+ libatk1.0-0 \
9
+ libc6 \
10
+ libcairo2 \
11
+ libcups2 \
12
+ libdbus-1-3 \
13
+ libexpat1 \
14
+ libfontconfig1 \
15
+ libgbm1 \
16
+ libgcc1 \
17
+ libglib2.0-0 \
18
+ libgtk-3-0 \
19
+ libnspr4 \
20
+ libnss3 \
21
+ libpango-1.0-0 \
22
+ libpangocairo-1.0-0 \
23
+ libstdc++6 \
24
+ libx11-6 \
25
+ libx11-xcb1 \
26
+ libxcb1 \
27
+ libxcomposite1 \
28
+ libxcursor1 \
29
+ libxdamage1 \
30
+ libxext6 \
31
+ libxfixes3 \
32
+ libxi6 \
33
+ libxrandr2 \
34
+ libxrender1 \
35
+ libxss1 \
36
+ libxtst6 \
37
+ lsb-release \
38
+ wget \
39
+ xdg-utils \
40
  --no-install-recommends \
41
  && rm -rf /var/lib/apt/lists/*
42