mirror of
https://github.com/nextcloud/docker.git
synced 2025-04-24 20:34:10 +02:00
Playwright scripts first draft
This commit is contained in:
parent
22d28e45cd
commit
86a442638d
4 changed files with 149 additions and 0 deletions
16
Dockerfile
Normal file
16
Dockerfile
Normal file
|
@ -0,0 +1,16 @@
|
|||
FROM python:3.11
|
||||
|
||||
# Install dependencies
|
||||
RUN apt-get update && apt-get install -y \
|
||||
curl \
|
||||
wget \
|
||||
gnupg \
|
||||
&& rm -rf /var/lib/apt/lists/*
|
||||
|
||||
# Install Playwright
|
||||
RUN pip install playwright
|
||||
|
||||
# Set up Playwright dependencies for Chromium, Firefox and Webkit
|
||||
RUN playwright install
|
||||
|
||||
CMD ["/bin/bash"]
|
Loading…
Add table
Add a link
Reference in a new issue