Skip to content

Instantly share code, notes, and snippets.

@arifsuhan
Created January 22, 2023 06:01
Show Gist options
  • Save arifsuhan/128094efa4c9e22bef5de3f60e13fcb6 to your computer and use it in GitHub Desktop.
Save arifsuhan/128094efa4c9e22bef5de3f60e13fcb6 to your computer and use it in GitHub Desktop.
docker network ls
docker network create mynet
FROM khipu/openjdk17-alpine
VOLUME /tmp
EXPOSE 8080
ARG JAR_FILE=Bank-0.0.1-SNAPSHOT.jar
COPY ${JAR_FILE} Bank.jar
ENTRYPOINT ["java","-jar","Bank.jar"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment