0
0
Fork 0
mirror of https://github.com/nextcloud/docker.git synced 2025-03-15 02:45:09 +01:00
nextcloud-docker/Dockerfile

14 lines
357 B
Text
Raw Normal View History

2023-07-11 15:26:41 +02:00
FROM mcr.microsoft.com/playwright/python:v1.35.0-jammy
2023-06-06 15:10:14 +02:00
# Install dependencies
2023-07-11 15:26:41 +02:00
RUN apt-get update && apt-get install -y curl wget gnupg && rm -rf /var/lib/apt/lists/*
2023-06-06 15:10:14 +02:00
# Install Playwright
RUN pip install playwright
# Set up Playwright dependencies for Chromium, Firefox and Webkit
RUN playwright install
2023-06-08 13:52:29 +02:00
RUN playwright install-deps
2023-06-06 15:10:14 +02:00
CMD ["/bin/bash"]