mirror of
https://github.com/nextcloud/docker.git
synced 2025-03-15 02:45:09 +01:00
17 lines
311 B
Text
17 lines
311 B
Text
|
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"]
|