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

13 lines
357 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
# Set up Playwright dependencies for Chromium, Firefox and Webkit
RUN playwright install
RUN playwright install-deps
CMD ["/bin/bash"]