c071458257
* update ci, readme, comments, remote workspaces * fix hosted test fixture * keep adapter config typedocs
13 lines
No EOL
486 B
Docker
13 lines
No EOL
486 B
Docker
FROM mcr.microsoft.com/devcontainers/javascript-node:0-18
|
|
|
|
# Install playwright
|
|
RUN npm install -g @playwright/test
|
|
|
|
# Install latest pnpm
|
|
RUN npm install -g pnpm
|
|
|
|
RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
|
|
&& curl -sSL https://dl.google.com/linux/direct/google-chrome-stable_current_$(dpkg --print-architecture).deb -o /tmp/chrome.deb \
|
|
&& apt-get -y install /tmp/chrome.deb
|
|
|
|
COPY welcome-message.txt /usr/local/etc/vscode-dev-containers/first-run-notice.txt |