mirror of
https://github.com/nextcloud/docker.git
synced 2025-03-15 02:45:09 +01:00
17 lines
339 B
Docker
17 lines
339 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
|
|
RUN playwright install-deps
|
|
|
|
CMD ["/bin/bash"]
|