Skip to content

Commit bbf0b47

Browse files
committed
chore: update dependencies
Signed-off-by: Joe Bowbeer <[email protected]>
1 parent 7300ded commit bbf0b47

File tree

3 files changed

+133
-410
lines changed

3 files changed

+133
-410
lines changed

.devcontainer/Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
# limitations under the License.
1212
#
1313

14-
FROM ubuntu:20.04
14+
FROM ubuntu:24.04
1515

1616
# Avoid warnings by switching to noninteractive
1717
ENV DEBIAN_FRONTEND=noninteractive
@@ -21,7 +21,7 @@ ENV DEBIAN_FRONTEND=noninteractive
2121
# will be updated to match your local UID/GID (when using the dockerFile property).
2222
# See https://aka.ms/vscode-remote/containers/non-root-user for details.
2323
ARG USERNAME=vscode
24-
ARG USER_UID=1000
24+
ARG USER_UID=1001
2525
ARG USER_GID=$USER_UID
2626

2727
# Uncomment the following COPY line and the corresponding lines in the `RUN` command if you wish to
@@ -48,8 +48,8 @@ RUN apt-get update \
4848
&& export NVM_DIR="$HOME/.nvm" \
4949
&& \. "$NVM_DIR/nvm.sh" \
5050
#
51-
# Install Node 16.14.0 (latest LTS)
52-
&& nvm install v16.14.0 \
51+
# Install Node 22.15 (latest LTS)
52+
&& nvm install v22.15.0 \
5353
#
5454
# Install Typescript Globally
5555
&& npm install -g typescript \

.devcontainer/devcontainer.json

Lines changed: 27 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -5,32 +5,36 @@
55
"dockerFile": "Dockerfile",
66

77
// Set *default* container specific settings.json values on container create.
8-
"settings": {
9-
"terminal.integrated.profiles.linux": {
10-
"bash": {
11-
"path": "bash"
12-
},
13-
"zsh": {
14-
"path": "zsh"
15-
},
16-
"fish": {
17-
"path": "fish"
18-
},
19-
"tmux": {
20-
"path": "tmux",
21-
"icon": "terminal-tmux"
22-
},
23-
"pwsh": {
24-
"path": "pwsh",
25-
"icon": "terminal-powershell"
8+
"customizations": {
9+
"vscode": {
10+
// Add the IDs of extensions you want installed when the container is created.
11+
"extensions": ["ms-azuretools.vscode-dapr"],
12+
// Use 'settings' to set *default* container specific settings.json values on container create.
13+
"settings": {
14+
"terminal.integrated.profiles.linux": {
15+
"bash": {
16+
"path": "bash"
17+
},
18+
"zsh": {
19+
"path": "zsh"
20+
},
21+
"fish": {
22+
"path": "fish"
23+
},
24+
"tmux": {
25+
"path": "tmux",
26+
"icon": "terminal-tmux"
27+
},
28+
"pwsh": {
29+
"path": "pwsh",
30+
"icon": "terminal-powershell"
31+
}
32+
},
33+
"terminal.integrated.defaultProfile.linux": "bash"
2634
}
27-
},
28-
"terminal.integrated.defaultProfile.linux": "bash"
35+
}
2936
},
3037

31-
// Add the IDs of extensions you want installed when the container is created.
32-
"extensions": ["ms-azuretools.vscode-dapr"],
33-
3438
"mounts": ["source=/var/run/docker.sock,target=/var/run/docker.sock,type=bind"],
3539

3640
"postCreateCommand": "npm install"

0 commit comments

Comments
 (0)