devops(docker): fix typo in docker build (#5705)

This commit is contained in:
Andrey Lushnikov 2021-03-03 10:26:23 -08:00 committed by GitHub
parent 2a6bb50425
commit 5ad8da962b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -87,7 +87,7 @@ COPY ./playwright.tar.gz /tmp/playwright.tar.gz
# Browsers will remain downloaded in `/ms-playwright`.
# Note: make sure to set 777 to the registry so that any user can access
# registry.
RUN mdkir /ms-playwright && \
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 && \

View file

@ -86,7 +86,7 @@ COPY ./playwright.tar.gz /tmp/playwright.tar.gz
# Browsers will remain downloaded in `/ms-playwright`.
# Note: make sure to set 777 to the registry so that any user can access
# registry.
RUN mdkir /ms-playwright && \
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 && \