File size: 702 Bytes
fc3fd5a
 
11d7f8d
fc3fd5a
11d7f8d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
a66c161
fc3fd5a
 
41e2385
fc3fd5a
11d7f8d
 
fc3fd5a
11d7f8d
 
fc3fd5a
f4d3550
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# Use the official Python image as a base
FROM python:3.11-slim

# Install necessary libraries and dependencies for Playwright
RUN apt-get update && apt-get install -y \
    libgconf-2-4 \
    libnss3 \
    libx11-xcb1 \
    libxcomposite1 \
    libxdamage1 \
    libxrandr2 \
    libxss1 \
    libxtst6 \
    libgtk-3-0 \
    libatspi2.0-0 \
    libgdk-pixbuf2.0-0 \
    libpango-1.0-0 \
    libpangocairo-1.0-0 \
    libcups2 \
    libdbus-1-3 \
    && rm -rf /var/lib/apt/lists/*

# Install Playwright and its dependencies
RUN pip install playwright
RUN playwright install

# Set up working directory
WORKDIR /app

# Copy application files
COPY . /app

# Run the application
CMD ["python", "app.py"]