docker build -t trame-app .docker run -it --rm -p 8080:80 trame-appOr if you need some prefix
docker run -it --rm -p 8080:80 -e TRAME_URL_PREFIX=/my-app/sub/path trame-appIf that directory was at the root of a git repo you could run the following command line
caprover deployThat app could also be deployed by running the following set of commands
tar -cvf trame-app.tar captain-definition Dockerfile app.py setup
caprover deploy -t trame-app.tar