-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
27 lines (19 loc) · 834 Bytes
/
build.sbt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
name := "Carrier"
version := "0.1"
scalaVersion := "2.13.1"
val akkaVersion = "2.6.3"
libraryDependencies ++= Seq(
"com.typesafe.akka" %% "akka-cluster-typed" % akkaVersion,
"com.typesafe.akka" %% "akka-serialization-jackson" % akkaVersion,
"com.typesafe.akka" %% "akka-http" % "10.1.10",
"com.lightbend.akka.management" %% "akka-management-cluster-bootstrap" % "1.0.5" exclude("com.typesafe.akka", "akka-discovery"),
"com.typesafe.akka" %% "akka-discovery" % akkaVersion,
"ch.qos.logback" % "logback-classic" % "1.1.3" % Runtime
)
enablePlugins(JavaAppPackaging)
enablePlugins(DockerPlugin)
dockerExposedPorts := Seq(3000)
maintainer in Docker := "Erwin Debusschere <erwincdl@gmail.com>"
packageSummary in Docker := "Carrier"
dockerEntrypoint := Seq("/opt/docker/bin/test-server")
packageDescription := "Carrier"