-
-
Save kasramp/422c8399399307efb4d9af5edc08fb28 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM adoptopenjdk/openjdk11:x86_64-ubuntu-jdk-11.0.3_7 | |
MAINTAINER Name <email@address.com> | |
RUN mkdir -p /user/share/[artifactId]/static/songs | |
RUN mkdir -p /user/share/[artifactId]/bin | |
ADD /target/[artifactId]*SNAPSHOT.jar /user/share/cisapify/bin/[artifactId].jar | |
WORKDIR /user/share/[artifactId] | |
ENTRYPOINT ["/opt/java/openjdk/bin/java", "-jar", "bin/[artifactId].jar"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment