d3evil4 commited on
Commit
18d2e31
·
verified ·
1 Parent(s): 6e47ea6

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +9 -0
Dockerfile CHANGED
@@ -5,6 +5,15 @@ FROM python:3.11-slim
5
  # Install OS dependencies for Playwright and Chromium
6
  RUN apt-get update && apt-get install -y
7
 
 
 
 
 
 
 
 
 
 
8
 
9
  # Set work directory
10
  WORKDIR /app
 
5
  # Install OS dependencies for Playwright and Chromium
6
  RUN apt-get update && apt-get install -y
7
 
8
+ RUN apt update && sudo apt install -y \
9
+ libx11-xcb1 libxcomposite1 libxdamage1 libxrandr2 \
10
+ libxss1 libxtst6 libnss3 libatk-bridge2.0-0 \
11
+ libgtk-3-0 libxkbcommon0 libxshmfence1 \
12
+ libxext6 libxfixes3 libxrender1 libxcb1 \
13
+ libxcb-glx0 libxcb-dri3-0 libx11-6 libxcursor1 \
14
+ libgdk-pixbuf2.0-0 libpangocairo-1.0-0 \
15
+ libcairo-gobject2
16
+
17
 
18
  # Set work directory
19
  WORKDIR /app