devops(docker): fix typo in docker build (#5705)
This commit is contained in:
parent
2a6bb50425
commit
5ad8da962b
|
|
@ -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 && \
|
||||
|
|
|
|||
|
|
@ -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 && \
|
||||
|
|
|
|||
Loading…
Reference in a new issue