File tree Expand file tree Collapse file tree 2 files changed +27
-0
lines changed Expand file tree Collapse file tree 2 files changed +27
-0
lines changed Original file line number Diff line number Diff line change
1
+ FROM mcr.microsoft.com/devcontainers/typescript-node:18
2
+
3
+ RUN corepack enable
4
+
5
+ # Install browsers
6
+ RUN pnpm dlx playwright install && sudo pnpm dlx playwright install-deps
Original file line number Diff line number Diff line change
1
+ // For format details, see https://aka.ms/devcontainer.json. For config options, see the
2
+ // README at: https://github.com/devcontainers/templates/tree/main/src/docker-existing-dockerfile
3
+ {
4
+ "name" : " Dev" ,
5
+ "build" : {
6
+ "dockerfile" : " ./Dockerfile"
7
+ },
8
+ "customizations" : {
9
+ // Configure properties specific to VS Code.
10
+ "vscode" : {
11
+ // Add the IDs of extensions you want installed when the container is created.
12
+ "extensions" : [
13
+ " dbaeumer.vscode-eslint" ,
14
+ " VisualStudioExptTeam.intellicode-api-usage-examples" ,
15
+ " VisualStudioExptTeam.vscodeintellicode" ,
16
+ " GitHub.copilot" ,
17
+ " ms-playwright.playwright"
18
+ ]
19
+ }
20
+ }
21
+ }
You can’t perform that action at this time.
0 commit comments