Skip to content

Commit 5a67344

Browse files
authored
fix(devcontainer): upgrade node to version 20 (#3385)
* fix(devcontainer): upgrade node to version 20 * chore: since Windows and Linux use different default line endings, Git may report a large number of modified files that have no differences aside from their line endings.
1 parent 79ee1ad commit 5a67344

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

.devcontainer/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Licensed under the MIT License. See https://go.microsoft.com/fwlink/?linkid=2090316 for license information.
44
#-------------------------------------------------------------------------------------------------------------
55

6-
FROM node:12
6+
FROM node:20
77

88
# Avoid warnings by switching to noninteractive
99
ENV DEBIAN_FRONTEND=noninteractive

.devcontainer/devcontainer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// If you want to run as a non-root user in the container, see .devcontainer/docker-compose.yml.
22
{
3-
"name": "Node.js 12 & Postgres",
3+
"name": "Node.js 20 & Postgres",
44
"dockerComposeFile": "docker-compose.yml",
55
"service": "web",
66
"workspaceFolder": "/workspace",

.gitattributes

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* text=auto eol=lf

0 commit comments

Comments
 (0)