Skip to content

Commit

Permalink
fix: update node to 18 in dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
Jikun committed Oct 19, 2023
1 parent affefb2 commit b46da82
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ FROM mcr.microsoft.com/azure-functions/python:4-python3.9-core-tools
COPY library-scripts/*.sh library-scripts/*.env /tmp/library-scripts/

# Install Node.js, Azure Static Web Apps CLI and Azure Functions Core Tools
ARG NODE_VERSION="16"
ARG NODE_VERSION="18"
ARG CORE_TOOLS_VERSION="4"
ARG USERNAME="swa-cli"
ARG SWA_CLI_VERSION
Expand Down
2 changes: 1 addition & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"args": {
// Please look at runtime version support to make sure you're using compatible versions
// https://docs.microsoft.com/en-us/azure/azure-functions/supported-languages#languages-by-runtime-version
"NODE_VERSION": "16",
"NODE_VERSION": "18",
"CORE_TOOLS_VERSION": "4"
}
},
Expand Down

0 comments on commit b46da82

Please sign in to comment.