Skip to content
Snippets Groups Projects
Unverified Commit 948b9a82 authored by Felipe Santos's avatar Felipe Santos Committed by GitHub
Browse files

chore: improve devcontainer (#23378)

parent f5291475
No related merge requests found
...@@ -9,3 +9,5 @@ RUN install-tool python 3.11.4 ...@@ -9,3 +9,5 @@ RUN install-tool python 3.11.4
# renovate: datasource=npm # renovate: datasource=npm
RUN install-tool yarn 1.22.19 RUN install-tool yarn 1.22.19
USER ubuntu
...@@ -7,14 +7,11 @@ ...@@ -7,14 +7,11 @@
}, },
"name": "Renovate", "name": "Renovate",
"dockerFile": "Dockerfile", "dockerFile": "Dockerfile",
"features": {
"ghcr.io/devcontainers/features/common-utils:2": {}
},
"customizations": { "customizations": {
"vscode": { "vscode": {
"settings": {
"terminal.integrated.profiles.linux": {
"bash": { "path": "/bin/bash" }
},
"terminal.integrated.defaultProfile.linux": "bash"
},
"extensions": [ "extensions": [
"dbaeumer.vscode-eslint", "dbaeumer.vscode-eslint",
"esbenp.prettier-vscode", "esbenp.prettier-vscode",
...@@ -30,5 +27,7 @@ ...@@ -30,5 +27,7 @@
"seccomp=unconfined", "seccomp=unconfined",
"--privileged" "--privileged"
], ],
"postCreateCommand": "yarn install" "postCreateCommand": "yarn install",
// Otherwise jest watcher fails because deps were not installed yet
"waitFor": "postCreateCommand"
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment