Skip to content

Latest commit

 

History

History
34 lines (21 loc) · 720 Bytes

File metadata and controls

34 lines (21 loc) · 720 Bytes

Tokengine build Instructions

Maven Build

Requires relatively Maven recent version e.g. 3.9.4

Run in CLI (bash / Powershell) in tokengine root directory.

mvn clean install

This uses the build instructions in the pom.xml

Docker build

To build a Tokengine container using docker in the current directory from the provided Dockerfile

docker build -t convexlive/tokengine:latest .

This internally builds using Maven. Any dependencies required should be published in Maven Central.

Docker Deployment

Deploy to docker hub:

docker login -u "convexlive" docker.io
docker push convexlive/tokengine

Replace convexlive with own username for custom deployments as needed.