playwright/browser_patches/docker/webkit/debian-11.dockerfile

49 lines
1.8 KiB
Plaintext
Raw Normal View History

FROM --platform=linux/amd64 debian:11
# Reexport --build-arg as environment variables
ARG ARG_BUILD_FLAVOR
ARG ARG_BROWSER_NAME
ENV BUILD_FLAVOR="${ARG_BUILD_FLAVOR}"
ENV BROWSER_NAME="${ARG_BROWSER_NAME}"
# These are needed to auto-install tzdata. See https://serverfault.com/questions/949991/how-to-install-tzdata-on-a-ubuntu-docker-image
ARG DEBIAN_FRONTEND=noninteractive
ARG TZ=America/Los_Angeles
# Debian 11 specific: add contrib & non-free repositories.
echo "deb http://ftp.us.debian.org/debian bullseye main contrib non-free" >> /etc/apt/sources.list.d/pwbuild.list
RUN apt-get update && apt-get install -y curl \
build-essential \
git-core \
zip unzip \
tzdata \
sudo
# Install Azure CLI
RUN curl -sL https://aka.ms/InstallAzureCLIDeb | sudo bash
# Install node16
RUN curl -sL https://deb.nodesource.com/setup_16.x | bash - && apt-get install -y nodejs
# Create the pwuser and make it passwordless sudoer.
RUN adduser --disabled-password --gecos "" pwuser && \
echo "ALL ALL = (ALL) NOPASSWD: ALL" >> /etc/sudoers
# mitigate git clone issues on CI
# See https://stdworkflow.com/877/error-rpc-failed-curl-56-gnutls-recv-error-54-error-in-the-pull-function
RUN git config --system user.email "devops@playwright.dev" && \
git config --system user.name "Playwright DevOps" && \
git config --system http.postBuffer 524288000 && \
git config --system http.lowSpeedLimit 0 && \
git config --system http.lowSpeedTime 999999
# Show welcome message
COPY ./pwuser_bashrc /home/pwuser/.bashrc
USER pwuser
RUN cd /home/pwuser && git clone --depth=1 https://github.com/microsoft/playwright
WORKDIR /home/pwuser/playwright