Next.js is a quite popular framework to create full-stack Web applications.
It comes packaged with Node, which handles its server-side rendering, but it also has a React-based templating engine.
It seems nice and powerful, and I’m going to use it for my TorizonCore-based application.
Searching online I found some documentation on how to create docker container for Next.js application (as an example this one, or this other one.
All of them start from node:18-alpine
container
FROM node:18-alpine
and I’m not sure if this is a good idea, or is better starting from a Torizon Node.js Typescrypt Application Template.
@matheus.castello can you suggest me the best approach?
Is there an easy way to “generate” a TC Next.js project, starting from those documentation?
Do you think that a (community supported) Next.js Template would be possible/useful?