#!/bin/bash
app="geo.app"
docker build -t ${app} .
docker run --platform=linux/arm64 -p 56733:80 \
--name=${app} \
-v $PWD:/app ${app}