generated from hankei6km/test-vscode-wasm-wasi-ext-webshell
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from hankei6km/topic/devcontainer
chore: Use node:18-bullseye to build devcontainer
- Loading branch information
Showing
2 changed files
with
4 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,8 @@ | ||
FROM mcr.microsoft.com/devcontainers/base:ubuntu | ||
FROM node:18-bullseye | ||
|
||
RUN apt update -y \ | ||
&& apt install -y --no-install-recommends xvfb \ | ||
&& apt install -y --no-install-recommends xauth libgtk-3-0 xvfb \ | ||
# playwright は実行時のバージョンと合わせる必要があるので、単純にインストールはできない。 | ||
# && npm install -g @playwright/test \ | ||
# && npx playwright install-deps \ | ||
&& rm -rf /var/lib/apt/lists/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters