0
0
Fork 0
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:
Danilo Ješić 2023-06-06 15:10:14 +02:00
parent 22d28e45cd
commit 86a442638d
4 changed files with 149 additions and 0 deletions

16
Dockerfile Normal file
View 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"]