2020-10-03 15:24:02 -05:00
|
|
|
name := "bitcoin-s-oracle-server"
|
|
|
|
|
|
|
|
// Ensure actor system is shut down
|
|
|
|
// when server is quit
|
|
|
|
Compile / fork := true
|
|
|
|
|
|
|
|
libraryDependencies ++= Deps.oracleServer
|
|
|
|
|
2020-10-08 07:17:48 -05:00
|
|
|
mainClass := Some("org.bitcoins.oracle.server.OracleServerMain")
|
2020-10-03 15:24:02 -05:00
|
|
|
|
|
|
|
packageSummary := "A DLC Oracle"
|
|
|
|
|
|
|
|
packageDescription := "A basic DLC oracle that allows you to commit to events and sign them"
|
|
|
|
|
2021-02-18 10:03:19 -06:00
|
|
|
dockerExposedPorts ++= Seq(9998)
|
|
|
|
|
|
|
|
dockerEntrypoint := Seq("/opt/docker/bin/bitcoin-s-oracle-server",
|
|
|
|
"--conf",
|
|
|
|
"/opt/docker/docker-application.conf")
|