Skip to content

Instantly share code, notes, and snippets.

@dnatic09
Created June 19, 2020 13:22
Show Gist options
  • Save dnatic09/b1a3533ebc647f19c9239444a4622d53 to your computer and use it in GitHub Desktop.
Save dnatic09/b1a3533ebc647f19c9239444a4622d53 to your computer and use it in GitHub Desktop.
#############################################################################
# Assemble uber-jar using Mozilla's SBT Image
#############################################################################
FROM mozilla/sbt:8u232_1.3.8 as builder
ENV SBT_OPTS="-Xss2M -Xms512M -Xmx2G"
COPY . /
RUN sbt assembly
#############################################################################
# Construct runtime image
#############################################################################
FROM openjdk:8u232-jdk-slim-buster
EXPOSE 8080
COPY --from=builder /target/scala-*/*-assembly-*.jar /opt/microservice/lib/microservice.jar
WORKDIR /opt/microservice/
ENTRYPOINT ["java", "-cp", "/opt/microservice/lib/microservice.jar", "com.microservice.App"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment