Containerisation
Podman is the preferred container engine, although Docker can be used equivalently (as a first port of call, try simply replacing podman –> docker in any commands below).
The steps below assume that your container engine of choice is configured and running on your machine.
An OCI image for the application can be built with:
podman build -t ska-src-maltopuft-frontend:latest .
The image can be run with:
podman run -t -p 3000:3000/tcp ska-src-maltopuft-frontend:latest
Navigating to one of the following addresses in a web browser should then render the frontend application.
0.0.0.0:3000 (docker-compose deployments only)