Skip to content

Commit 626f609

Browse files
committedNov 25, 2023
Bumped nodejs
1 parent 7de39a8 commit 626f609

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed
 

‎.devcontainer/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
1111
# RUN su node -c "source /usr/local/share/nvm/nvm.sh && nvm install ${EXTRA_NODE_VERSION}"
1212

1313
# [Optional] Uncomment if you want to install more global node modules
14-
RUN su node -c "npm install -g npm"
14+
# RUN su node -c "npm install -g npm"

‎.devcontainer/devcontainer.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@
2020

2121
// Use 'forwardPorts' to make a list of ports inside the container available locally.
2222
"forwardPorts": [
23-
25565,
23+
25565, // Minecraft Server Port
24+
25575, // GraphQL API
2425
8080 // RethinkDB admin panel
2526
],
2627

‎.devcontainer/docker-compose.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ services:
99
# Update 'VARIANT' to pick an LTS version of Node.js: 18, 16, 14.
1010
# Append -bullseye or -buster to pin to an OS version.
1111
# Use -bullseye variants on local arm64/Apple Silicon.
12-
VARIANT: 14-buster
12+
VARIANT: 20-buster
1313
volumes:
1414
- ..:/workspace:cached
1515

0 commit comments

Comments
 (0)
Please sign in to comment.