Nextcloud/Dockerfile
2023-06-06 15:10:14 +02:00

17 lines
311 B
Docker

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"]