codeforpdx / PASS

PASS project - with HMIS module integration
MIT License
24 stars 24 forks source link

[Enhancement] - Dockerfile.react needs to be updated to Node 18 #591

Closed faddah closed 3 months ago

faddah commented 4 months ago

Describe the Current Behavior/Feature:

The Dockerfile.react in the root directory of the PASS code base is pulling from Node.JS 16 — it should pull from our updated Node 18.

Rationale:

We have updated our docs to tell developers / clients to run our Solid Server & PASS web site on Node.JS v18.19.x — the Docker file should reflect the same.

Proposed Changes:

One line change —

FROM node:16 AS build

... to ...

FROM node:18 AS build

Possible Drawbacks:

None know, just updating it to match what we want developers/clients using for Node.JS.

Alternatives Considered:

N/A

Additional Context:

N/A