-
Notifications
You must be signed in to change notification settings - Fork 146
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(maintenance): add support for nodejs20.x runtime (#1790)
* feat(maintenance): support nodejs20.x runtime * tests(metrics): fix object ordering in tests * build(testing): bump cdk * build(maintenance): revert aws-cdk-lib to support nodejs14 * tests(maintenance): set runtime with family * chore(docs): patch runtime in cdk * chore(docs): patch runtime in cdk * chore(maintenance): increment version in commons ahead of release
- Loading branch information
1 parent
b31803a
commit 58434bc
Showing
3 changed files
with
18 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,30 @@ | ||
# See here for image contents: https://github.com/microsoft/vscode-dev-containers/blob/v0.212.0/containers/javascript-node/.devcontainer/base.Dockerfile | ||
<<<<<<< HEAD | ||
FROM mcr.microsoft.com/vscode/devcontainers/javascript-node@sha256:ff7fcaf39a616aed41b7e9af6ebedfee1c605e89ba9416c6fa79f33762345aa7 | ||
======= | ||
# [Choice] Node.js version (use -bullseye variants on local arm64/Apple Silicon): 18, 16, 14, 18-bullseye, 16-bullseye, 14-bullseye, 18-buster, 16-buster, 14-buster | ||
ARG VARIANT="20-bullseye" | ||
FROM mcr.microsoft.com/vscode/devcontainers/javascript-node:0-${VARIANT} | ||
>>>>>>> 5d382569 (feat(maintenance): add support for nodejs20.x runtime (#1790)) | ||
|
||
# Install fnm to manage Node.js versions | ||
RUN curl -fsSL https://fnm.vercel.app/install -o /tmp/install \ | ||
&& chmod a+x /tmp/install \ | ||
&& /tmp/install \ | ||
&& rm /tmp/install | ||
|
||
<<<<<<< HEAD | ||
# Install AWS SAM CLI | ||
RUN curl -LO https://github.com/aws/aws-sam-cli/releases/latest/download/aws-sam-cli-linux-x86_64.zip \ | ||
&& unzip -q aws-sam-cli-linux-x86_64.zip -d sam-installation \ | ||
&& sudo ./sam-installation/install \ | ||
&& rm -rf sam-installation aws-sam-cli-linux-* | ||
&& rm -rf sam-installation aws-sam-cli-linux-* | ||
======= | ||
# Install fnm to manage Node.js versions | ||
RUN curl -fsSL https://fnm.vercel.app/install | bash -s | ||
|
||
RUN wget https://github.com/aws/aws-sam-cli/releases/latest/download/aws-sam-cli-linux-x86_64.zip \ | ||
&& unzip aws-sam-cli-linux-x86_64.zip -d sam-installation \ | ||
&& sudo ./sam-installation/install \ | ||
&& rm -rf sam-installation aws-sam-cli-linux-* | ||
>>>>>>> 5d382569 (feat(maintenance): add support for nodejs20.x runtime (#1790)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
// this file is auto generated, do not modify | ||
export const PT_VERSION = '1.17.0'; | ||
export const PT_VERSION = '1.18.0'; |