feature/IO-3499-React-19: Documentation / Update node version on DockerFile

This commit is contained in:
Dave
2026-01-13 16:32:45 -05:00
parent 361bbc9abb
commit 1764397195
4 changed files with 1176 additions and 1 deletions

View File

@@ -3,7 +3,7 @@ FROM amazonlinux:2023
# Install Git and Node.js (Amazon Linux 2023 uses the DNF package manager)
RUN dnf install -y git \
&& curl -sL https://rpm.nodesource.com/setup_22.x | bash - \
&& curl -sL https://rpm.nodesource.com/setup_24.x | bash - \
&& dnf install -y nodejs \
&& dnf clean all