mirror of
https://github.com/nextcloud/docker.git
synced 2025-03-14 18:35:08 +01:00
13 lines
365 B
Docker
13 lines
365 B
Docker
FROM mcr.microsoft.com/playwright/python:v1.35.0-jammy
|
|
|
|
# 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==1.35.0
|
|
|
|
# Set up Playwright dependencies for Chromium, Firefox and Webkit
|
|
RUN playwright install
|
|
RUN playwright install-deps
|
|
|
|
CMD ["/bin/bash"]
|