cherry-pick(release-1.9): fix registry to be accessible by Azure Pipe… (#5704)
This cherry-picksf637b0302dand59d9c1cae6References #5635
This commit is contained in:
parent
f41d000cc6
commit
c6a29011e5
|
|
@ -79,15 +79,17 @@ RUN apt-get update && apt-get install -y python3.8 python3-pip && \
|
|||
|
||||
ENV PLAYWRIGHT_BROWSERS_PATH=/ms-playwright
|
||||
|
||||
RUN mkdir /ms-playwright && chmod 777 /ms-playwright
|
||||
|
||||
# 1. Add tip-of-tree Playwright package to install its browsers.
|
||||
# The package should be built beforehand from tip-of-tree Playwright.
|
||||
COPY ./playwright.tar.gz /tmp/playwright.tar.gz
|
||||
|
||||
# 2. Install playwright and then delete the installation.
|
||||
# Browsers will remain downloaded in `/ms-playwright`.
|
||||
RUN su pwuser -c "mkdir /tmp/pw && cd /tmp/pw && npm init -y && \
|
||||
npm i /tmp/playwright.tar.gz" && \
|
||||
rm -rf /tmp/pw && rm /tmp/playwright.tar.gz
|
||||
# Note: make sure to set 777 to the registry so that any user can access
|
||||
# registry.
|
||||
RUN mkdir /ms-playwright && \
|
||||
mkdir /tmp/pw && cd /tmp/pw && npm init -y && \
|
||||
npm i /tmp/playwright.tar.gz && \
|
||||
rm -rf /tmp/pw && rm /tmp/playwright.tar.gz && \
|
||||
chmod -R 777 /ms-playwright
|
||||
|
||||
|
|
|
|||
|
|
@ -78,15 +78,17 @@ RUN apt-get update && apt-get install -y python3.8 python3-pip && \
|
|||
|
||||
ENV PLAYWRIGHT_BROWSERS_PATH=/ms-playwright
|
||||
|
||||
RUN mkdir /ms-playwright && chmod 777 /ms-playwright
|
||||
|
||||
# 1. Add tip-of-tree Playwright package to install its browsers.
|
||||
# The package should be built beforehand from tip-of-tree Playwright.
|
||||
COPY ./playwright.tar.gz /tmp/playwright.tar.gz
|
||||
|
||||
# 2. Install playwright and then delete the installation.
|
||||
# Browsers will remain downloaded in `/ms-playwright`.
|
||||
RUN su pwuser -c "mkdir /tmp/pw && cd /tmp/pw && npm init -y && \
|
||||
npm i /tmp/playwright.tar.gz" && \
|
||||
rm -rf /tmp/pw && rm /tmp/playwright.tar.gz
|
||||
# Note: make sure to set 777 to the registry so that any user can access
|
||||
# registry.
|
||||
RUN mkdir /ms-playwright && \
|
||||
mkdir /tmp/pw && cd /tmp/pw && npm init -y && \
|
||||
npm i /tmp/playwright.tar.gz && \
|
||||
rm -rf /tmp/pw && rm /tmp/playwright.tar.gz && \
|
||||
chmod -R 777 /ms-playwright
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue